这里记录一下个人认为💻编码过程可以快速自检的几个标准和指标,共勉之
1. Seldom obvious bugs & grammar errors - 极少的低级bug和语法错误
2. Thoughtful edge cases handling - 周全的边界处理
3. Fluency, easy to locate bugs & issues - 代码总是能被快速定位问题
4. Reusability, no duplicated logic as much as possible - 复用性,不维护两份相同的逻辑
5. Extremely uncoupled - 模块化,极力避免耦合
6. Accurate & neat naming - 简洁到位的命名
7. Essential & clean comments - 画龙点睛的注释
#代码 #编程