欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

再一次理解String

程序员文章站 2022-02-08 07:25:45
...
偶然看到了篇关于String的文章,发现以前学的都忘了 :evil: ,所以写篇文章加深印象,可能有不对的地方,敬请指正.
public class StringTest {   
public static void main(String[] args){
String s1 = "hello";
String s2 = new String("hello");
String s3 = new String("hello");
testString(s1,s2,s3);
//此时内存 情况见图一
s2 = s2.intern();
//此时内存 情况见图二
System.out.println("after s2.intern");
testString(s1,s2,s3);

}
private static void testString(String s1,String s2,String s3){
System.out.println("s1 = s2 is "+(s1==s2));
System.out.println("s2 = s3 is "+(s2==s3));
System.out.println("s1.equals(s2) is "+s1.equals(s2));
System.out.println("s2.equals(s3) is "+s2.equals(s3));
}
}

输出结果为
s1 = s2 is false
s2 = s3 is false
s1.equals(s2) is true
s2.equals(s3) is true
after s2.intern
s1 = s2 is true
s2 = s3 is false
s1.equals(s2) is true
s2.equals(s3) is true


知识点一 String对象创建过程:
语句一:String s1 = "hello";
语句二:String s2 = new String("hello");
语句三:String s3 = new String("hello");
语句一是创建前首先在Spring pool中查找hello对象,有则引用,没有现在String pool中创建,再引用此对象;
语句二是在堆中创建hello对象,所以System.out.println("s2 = s3 is "+(s2==s3))//结果为false;
此时内存见图一;
知识点二 intern()方法的作用:
语句三:s2 = s2.intern();
当一个String实例str调用intern()方法时,Java查找常量池中是否有相同Unicode的字符串常量,如果有,则返回其的引用,如果没有,则在常量池中增加一个Unicode等于str的字符串并返回它的引用;
此时内存见图二;
相关标签: Spring