JDK的String类有一个intern
方法:public native String intern();
方法的注释:
/**
* Returns a canonical representation for the string object.
* <p>
* A pool of strings, initially empty, is maintained privately by the
* class {@code String}.
* <p>
...
*/
该方法的作用是把字符串加载到常量池中,JDK1.6常量池位于方法区,JDK1.7以后常量池位于堆。
写3段代码测试下:
public static void test_intern_1() {
String s1 = new String("123") + new String("123");
s1.intern();
String s2 = "123123";
// true in JDK8
System.out.println(s1 == s2);
}
在定义变量s2
之前,调用s1.intern()
方法将字符串123123
复制到常量池,因此变量s1
,s2
指向相同引用。
public static void test_intern_2() {
String s1 = new String("123") + new String("123");
String s2 = "123123";
s1.intern();
// false in JDK8
System.out.println(s1 == s2);
}
先定义定义变量s1
、s2
,然后调用s1.intern()
方法,但调用后未使用返回值,因此s1
还是指向之前new String的引用。
public static void test_intern_3() {
String s1 = new String("123") + new String("123");
String s2 = "123123";
s1 = s1.intern();
// true in JDK8
System.out.println(s1 == s2);
}
先定义定义变量s1
、s2
,然后调用s1.intern()
方法并且将返回值赋值给s1
,由于s2
已申明了字符串常量,
因此s1.intern()
方法返回s2
的引用,最终变量s1
,s2
指向相同引用。
参考:
- Java中String字符串常量池 https://www.cnblogs.com/tongkey/p/8587060.html
- Java String类的intern()方法 https://www.cnblogs.com/darknessplus/p/10432064.html