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


当前回答

// woot, global var. I havent done this for a long time.

其他回答

// TODO: Finish.
/*************************** Drag And Drop Section - Start (you should be me to mess with this section)*********************************************/

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

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

没有其他评论了

我猜它被病毒式传播了,我在一个守护进程(Linux)中发现了以下防止OOM杀手选择它:

/*
 * Don't OOM me, bro!
 */

这紧跟在mlockall()之后,以防止进程交换,注释如下:

/*
 * Don't swap me, bro!
 */