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


当前回答

var something TBoolean; //Pickins

其他回答

大学时代:

//why the f*** we have to move this here to make it work

当我们和教授一起复习的时候,它在印刷资料中被突出了。

原因是:一些与缓冲区溢出相关的严重错误,影响了代码中其他位置的文件处理程序中不相关的变量。移动变量将使它再次工作。

// TODO: Delete
// simply copied from another code
/*
after hours of consulting the tome of google
i have discovered that by the will of unknown forces
without the below line, IE7 believes that 6px = 12px
*/
font-size: 0px;
public boolean isDirty() {
    //Why do you always go out and
    return dirty;
}