原文:http://mindprod.com/jgloss/unmain.html
译者:陈皓 (@左耳朵耗子)
译文:http://coolshell.cn/articles/4758.html
对,你没看错,本文就是教你怎么写出让同事无法维护的代码。
00.程序命名
01.伪装欺诈
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 ];
}
02.文档和注释
03.程序设计
04.测试
05.其他
总之,我们的口号是—— Write Everywhere, Read Nowhere