xxx.intern()检查常量池是否存在xxx代表的字符串,如果存在,直接返回常量池中字符串对象的引用;如果不存在,把xxx的引用复制到常量池,然后返回xxx的引用。
String str1 = new String("Hello")+ new String("World");System.out.println(str1.intern() == str1);System.out.println(str1 == "HelloWorld");结果:truetrue
str1在堆上创建三个对象,分别存放:“Hello”、“World”、“HelloWorld”
str1.intern()发现常量池不存在"HelloWorld",将str1应用放到常量池,因此,str1.intern() == str1 == "HelloWorld"。
String str2 = "HelloWorld";String str1 = new String("Hello")+ new String("World");System.out.println(str1.intern() == str1);System.out.println(str1 == "HelloWorld");结果:falsefalse
str1.intern()发现常量池存在"HelloWorld",返回应用其实是str2,因此,str1.intern() == str2 == "HelloWorld"。
网上说,JDK1.6和JDK1.8处理不一样。不过,对于字符串判断内容是否相等,还是记得用equals来吧。不要将c++ string的==带到Java中来。
System.out.println(str1.intern().equals(str1));System.out.println(str1.equals("HelloWorld"));结果:truetrue