你遇到过的源代码中最好的注释是什么?


当前回答

/* My lawyer told me not to reveal */

其他回答

// insert comment here
#ifdef TRACE
#undef TRACE     /* All your trace are belong to us. */
#endif
#define TRACE ....

在makefile中找到这个

# ===== Never edit below this line. Ever. Or I'll kick your ass. ====

我们有一个文件,在它的一半,一个程序员试图弄清楚混乱的意义,设法将所有无意义的代码移到底部,并留下了这样的评论:

I have no idea what this stuff does below here.

另一名程序员留下了一系列嵌套的命名空间,这些命名空间的作用类似于“方向手册”,这样您就可以钻取想法中的名称空间并选择您的操作。

<!-- Here it is -->

没有其他评论了。直到今天我都不知道“它”是什么。