String存放位置
简介
字符串在不同的JDK版本中,存放的位置不同,创建方式不同,存放的位置也不同。
存放位置
JDK1.7以下,无论何种方法创建String对象,位置都位于方法区。
JDK1.8及1.8以上,new String("Hello")创建位于堆中,String s3="world"创建则位于常量池中,常量池位于方法区中。
代码
public void hashCodeCompute(){
Object o = new Object();
System.out.println(o.hashCode());
System.out.println(System.identityHashCode(o));
System.out.println("Object-------------------------");
//正常的创建一个对象的使用方法,存储在堆中--->JDK8
String s1 = new String("Hello");
String s2 = new String("Hello");
System.out.println(s1.hashCode() == s2.hashCode());
System.out.println(System.identityHashCode(s1) == System.identityHashCode(s2));
System.out.println("String-------------------------");
String s3="world";
String s4="world";
System.out.println(s3.hashCode() == s4.hashCode());
System.out.println(System.identityHashCode(s3) == System.identityHashCode(s4));
System.out.println("world-------------------------");
}
- 输出结果
2018664185
2018664185
Object-------------------------
true
false
String-------------------------
true
true
world-------------------------
Gitee地址
XFS