本帖最后由 尚巾仁杰 于 2015-4-12 22:25 编辑
提供代码请大神帮忙结合案例分析一哈
public class 对象的哈希值和内存地址 {
public static void main(String[] args) {
Object obj = new Object();
System.out.println(obj);
System.out.println(Integer.toHexString(obj.hashCode()));
String s = new String("hello");
System.out.println(s.hashCode());
System.out.println(Integer.toHexString(s.hashCode()));
int[] arr = new int[10];
System.out.println(arr);
System.out.println(arr.hashCode());
System.out.println(Integer.toHexString(arr.hashCode()));
}
|