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


当前回答

我在COBOL程序中看到的一些东西让我感到恐惧

* All comments pertain to the lines which follow.

这是什么意思?

有人对评论感到不舒服,以至于不得不写一个元评论? 有人习惯将注释放在相关代码的下面,而被告知要将注释放在上面?这是怎么发生的?

其他回答

// I am not sure if we need this, but too scared to delete. 

从Python / ceval.c:

/* This is gonna seem *real weird*, but if you put some other code between
   PyEval_EvalFrame() and PyEval_EvalCodeEx() you will need to adjust
   the test in the if statements in Misc/gdbinit (pystack and pystackv). */
private int mousycounter = 0; //Not really a counter

看这个:

'On Error Goto Hell.
// If I from the future read this I'll back in time and kill myself.