Featured image of post 如何在代码中命名事物的建议

如何在代码中命名事物的建议

根据CodeAesthetic的视频“Naming Things in Code”进行的简要总结,关于如何更好地在代码中命名。

概要

这是对由CodeAesthetic创建的视频Naming Things in Code的简要总结。以下的建议可以帮助开发者更好地在代码中命名事物。原始视频非常值得观看。

总结

  1. 不要使用单个字幕命名变量
  2. 尽可能不要使用缩写,对未来的自己和其他人好一点
  3. 不要在名字中加上变量类型
  4. 如果有则加上该变量的单位
  5. 不要给自定义的Types名中加上Types
  6. 不要给class命中加上Base或者Abstract
  7. 不要命名为Utils或者Helper

视频中的建议

  • Don’s abbreviate names
  • Don’t put types in variable names
  • Add units to variables unless the type tells you
  • Don’t put types in your types
  • Refactor if you find youtself naming code “Utils”
Licensed under CC BY-NC-SA 4.0
comments powered by Disqus