|
楼主 |
发表于 2020-9-29 13:30:01
|
显示全部楼层
这是STRING的:
public int hashCode() {
int h = hash;
if (h == 0) {
int off = offset;
char val[] = value;
int len = count;
for (int i = 0; i < len; i++) {
h = 31*h + val[off++];
}
hash = h;
}
return h;
}
这应该不是地址吧 我的目的是想看2个对象是不是在同一个地址上 有没办法啊 |
|