码迷,mamicode.com
首页 > 其他好文 > 详细

JDK中String类的intern方法实例

时间:2021-01-11 10:45:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:vat   ica   returns   调用   native   一个   initial   方法   logs   

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);
}

先定义定义变量s1s2,然后调用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);
}

先定义定义变量s1s2,然后调用s1.intern()方法并且将返回值赋值给s1,由于s2已申明了字符串常量,
因此s1.intern()方法返回s2的引用,最终变量s1,s2指向相同引用。


参考:

JDK中String类的intern方法实例

标签:vat   ica   returns   调用   native   一个   initial   方法   logs   

原文地址:https://www.cnblogs.com/cdfive2018/p/14240503.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!