当我在Eclipse编辑器中打开.class
文件时,它会显示注释以及代码。
不应优化 /**
* Returns a hash code for this string. The hash code for a
* <code>String</code> object is computed as
* <blockquote><pre>
* s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
* </pre></blockquote>
* using <code>int</code> arithmetic, where <code>s[i]</code> is the
* <i>i</i>th character of the string, <code>n</code> is the length of
* the string, and <code>^</code> indicates exponentiation.
* (The hash value of the empty string is zero.)
*
* @return a hash code value for this object.
*/
public int hashCode() {
int h = hash;
if (h == 0 && value.length > 0) {
char val[] = value;
for (int i = 0; i < value.length; i++) {
h = 31 * h + val[i];
}
hash = h;
}
return h;
}
文件以删除评论吗?我期待看到优化的代码没有评论。
当我在Eclipse中打开String.class时,我看到了这一点。
{{1}}
答案 0 :(得分:4)
当Eclipse打开.class
文件时,它会生成字节代码和注释的可读表示(它可以在哪里以及它们认为有用的地方)。这些注释不是.class
文件的一部分。 (但是,如果.class
文件中存在调试信息,它将在生成注释时使用它。)
编辑:根据您更新的问题,我要说的是,Eclipse正在将源文件与.class
文件相关联,并显示该文件而不是字节代码。对于Java API类,这通常是因为Eclipse中的库定义设置为指向源.jar文件。