你遇到过的源代码中最好的注释是什么?
当前回答
从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). */
其他回答
我没有亲身经历过这种情况,但这是一个很好的故事(详见我的评论中的解释):
#define MSGTAG_B33R 0x723 /* RIPLVB */
在给一个朋友看了这篇来自《Coding Horror》的文章几个小时后,我看到了他对代码的评论:
// valdez先生是一个暴力的精神病患者。别惹他生气。
简单但有效的注释,在一些不太安全的c++代码之前
// yikes
我发现了这个
// This is a kind of magic...
On error resume next 'because nothing will ever go wrong!