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


当前回答

// Empty constructor to satisfy the stupid compiler
 Public ServletHandlerClass () { } 

其他回答

sqlite源文件顶部:

/*

** The author disclaims copyright to this source code.  In place of             
** a legal notice, here is a blessing:                                          
**                                                                              
**    May you do good and not evil.                                             
**    May you find forgiveness for yourself and forgive others.                 
**    May you share freely, never taking more than you give.

*/
// The hackiest hack that ever did hack

它在WordPress博客引擎(wp-admin/includes/user.php -如果有人真的想看黑客攻击本身)。

我只是发表了这样的评论:

// this control (Resistance) is FUTILE! 

消毒:

//Forward declarations:

class X {}; // TODO: Remove {}  ! When we get X defined....
struct core_unlocker
{
    core_unlocker(lock)
    {
        m_lock = lock
        unlock(lock)  //Abandon All Locks, Ye Who Enter Core!
    }
    ~core_unlocker()
    {
        lock(m_lock)
    }  
    private:
    Corelock m_lock;
}