1.在Object类中,Hashcode表示的是将对象的内存地址进行映射成一个哈希值
public native int hashCode();
2.基本数据类型对应的包装类的HashCode方法,也进行了相应的重写。
Integer :
public static int hashCode(int value) {
return value;
}
3.在String类中HashCode方法
//s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1]
int hash = 0;
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;
}