你遇到过的源代码中最好的注释是什么?
当前回答
// good luck!
其他回答
//这将为我们每个用户节省0.5秒,并取悦机器精神。
在很长的程序之前:)
public int hashCode() {
//sucks, but what're you gonna do
/*
int hash = 7;
for (int i = 0; i < array.length; i++)
hash = hash * 31 * (null == array[i] ? 0 : array[i].hashCode());
return hash;
*/
return 0;
}
/* Here I sit, Joe broken hearted, came to do some sh*t, but only just started. */
关于一些繁重的正则表达式输入验证。
一个名为monitoring.sh的文件的前两行:
#!/usr/bin/perl
# perl script disguised as a bash script
//FIXME: fix this before the 1.0 release
他们在第4版