你遇到过的源代码中最好的注释是什么?
当前回答
// I'm sorry.
其他回答
// For the sins I am about to commit, may James Gosling forgive me
多年前,我遇到了这样一个问题:
/***************************************************************************/ /* deep wizardry. do not touch. */ /* */ /* no seriously. XXXXXX I'm looking at you. If you screw with this again */ /* I will kill you with my swingline stapler. */ /* */ /* ... */
然后描述了一个特别复杂的算法。
有一次,我在另一个讨论中看到这样的内容:
// I can't divide with zero, so I have to divide with something very similar
result = number / 0.00000000000001;
聪明的解决方案,不是吗?(如果有人不确定,这就是个笑话)
#如你所见:我注释了代码!
rescue
# silently, we fail
# many validations fade
# like tear drops in rain
end
这只是众多案例中的一个……