标签:for 自己 实现 聚类分析 好的 abi 条件 ane 方法
Coding conventions for projectsApache Developers‘ C Language Style GuideDrupal PHP Coding StandardsZend Framework Coding StandardsGNU Coding StandardsStyle guides for Google-originated open-source projectsLinux Kernel Coding Style (or Documentation/CodingStyle in the Linux Kernel source tree)Mozilla Coding Style GuideRoad Intranet‘s C++ GuidelinesThe NetBSD source code style guide (formerly known as the BSD Kernel Normal Form)OpenBSD Kernel source file style guide (KNF)"GNAT Coding Style: A Guide for GNAT Developers". GCC online documentation. Free Software Foundation. Retrieved 2009-01-19. (PDF)ZeroMQ C Language Style for Scalability (CLASS)
以上是我了解到的有Coding conventions的项目,其中最早的也在2000年后,所以我觉得谈不上历史,只能说是一种程序员为了便于合作,制定出来的团队公约,目前还没有得到大范围的使用.
无
错误:
1.使用了自然语言
2.错误使用了中间变量
3.格式错误
4.进行了同步控制却没有写相关的effects
5.使用了过多的常数,而非变量名
改进:
1.使用bool表达式
2.停止使用
3.学习正确的格式
4.先写完规格,再写方法
5.改为使用变量名
所有的功能bug均无对应的规格bug.
我感受到了设计规格带来的许多好处
一是通过设计规格,我发现了我设计能力的缺陷,经常写完规格,才发现写的不对,导致需要重新修改规格
二是通过设计规格,发现了码代码的能力的缺陷,等到修改完规格了之后,发现设计的规格,无法实现,或者在实现过程中发现了更好的方式,导致需要重新修改规格,以及代码.
标签:for 自己 实现 聚类分析 好的 abi 条件 ane 方法
原文地址:https://www.cnblogs.com/cuna/p/9102952.html