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


当前回答

发现了一个复杂的代码-

//耶稣和这段代码有一个共同点:都是复活的

其他回答

Repeat
    ...
Until (JesusChristsReturn) ' Not sure

我曾经在一个用Paradox 3.5 -编写的大型预算系统工作多年后接到一个客户的电话

“我们在调试中遇到了一些注释”-

// This shouldn't happen, if it does, then the bits that automagically 
// worked when I wrote it have stopped working

... !

//Not a bug, parameter position can change..., if you think this is wrong, you are in fact wrong.

下面是一个必须声明的局部变量,只是为了将一个常量传递给库函数:

// This only exists because Scott doesn't know how to use const correctly

我刚刚注意到自己在写这个

// not brilliant solution, but fair enough heh.