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


当前回答

/* You are not meant to understand this */ 

其他回答

// If I from the future read this I'll back in time and kill myself. 

在游戏中,这个物体可以被踩到,或者:

stepOff(); //bitch
//Woulda
if(x) {}
//Shoulda
else if(y) {}
//Coulda
else {}

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

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

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

/*
 * Don't swap me, bro!
 */
class Act //That's me!!!
{

}