手记

java中String的intern方法

intern方法其实是从字符串常量池里返回当前字符串,如果当前字符串已经存在了则返回当前字符串,如果当前字符串不存在,则将当前字符串放入常量池再返回。


String s = "abc";
String s3 = new String("abc");
if (s.intern() == s3.intern()) {
    System.out.println("s.intern = s3.intern");
}
else {
    System.out.println("s.intern != s3.intern");
}

摘自:https://www.cnblogs.com/5207/p/5892583.html

0人推荐
随时随地看视频
慕课网APP