你遇到过的源代码中最好的注释是什么?
当前回答
public boolean isDirty() {
//Why do you always go out and
return dirty;
}
其他回答
为什么你不应该将你的软件开发外包的一个经典案例:
public class Contact
{
//...
/// <summary>
/// Gets or sets the name of the first.
/// </summary>
/// <value>The name of the first.</value>
public string FirstName
{
get { return _firstName; }
set { _firstName = value; }
}
}
// If I from the future read this I'll back in time and kill myself.
在js代码中:
// hack for ie browser (assuming that ie is a browser)
我没有亲身经历过这种情况,但这是一个很好的故事(详见我的评论中的解释):
#define MSGTAG_B33R 0x723 /* RIPLVB */
来自一个显然在看巨蟒剧团的小伙子:
> //现在,for something完全 > // different: 类theLarch {