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


当前回答

// A Gorgon class - For the love of Zeus don't look directly at it!

其他回答

// TODO - Comment this function

在LKM中:

/*
* Dear Richard Stallman,
*
* This one's for you.
*
* Sincerely,
* Me
*
*/
MODULE_LICENSE( "GPL" );

我不止一次使用过这个方法,当我对一个数学公式做了一些不明显的简化时,我不想记录:

//this formula is right, work out the math yourself if you don't believe me
// Fuck.

,……

// This code worked before, but my cat decided to take a trip across my keyboard...

从一个遗留的Perl CGI脚本:

# This is convoluted and evil, sorry.