如何写出无法维护的代码。

2020-08-07  本文已影响0人  kkkkkkee

一、程序命名

二、伪装欺诈

for(j=0; j<array_len; j+ =8)
{
    total += array[j+0 ];
    total += array[j+1 ];
    total += array[j+2 ]; /* Main body of
    total += array[j+3]; * loop is unrolled
    total += array[j+4]; * for greater speed.
    total += array[j+5]; */
    total += array[j+6 ];
    total += array[j+7 ];
}

三、文档和注释

四、程序设计

五、测试

六、其他

总之,我们的口号是—— Write Everywhere, Read Nowhere
原文:http://mindprod.com/jgloss/unmain.html
译文:http://coolshell.cn/articles/4758.html

上一篇下一篇

猜你喜欢

热点阅读