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


当前回答

在中间几千行JScript文件后完全任意行…

// The world is a happy place.

其他回答

/* My lawyer told me not to reveal */
//too much log will kill you

这个评论是我自己写的,当降低一些日志的优先级时,否则会写数百MB的垃圾,严重削弱应用程序的性能。

这在我自己的代码中出现过几次。显然我摸了不止一次。

// TODO: Fix this.  Fix what?

我没有这个来源的副本,但我一直记得它:

//如果你想不明白,就不要读这篇文章

try {

}
catch (SQLException ex) {
    // Basically, without saying too much, you're screwed. Royally and totally.
}
catch(Exception ex)
{
    //If you thought you were screwed before, boy have I news for you!!!
}