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


当前回答

//迭代一次 美元我+ +;

不幸的是,它是我的,在我的“必须评论一切”阶段。

其他回答

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;
}
i++; // increment variable i
return 1; # returns 1
//I am not sure why this works but it fixes the problem. 

这是之前的一组代码,技术上确实解决了问题,它的意思是,但打破了其他3个东西....