先看代码:
/**
* Created by Jarvis.y on 2020/11/5
*/
public class StringTest {
public static void main(String[] args) {
String s1 = "Jarvis.y";
String s2 = new String("Jarvis.y");
System.out.println(s1.equals(s2));
System.out.println(System.identityHashCode(s1));
System.out.println(System.identityHashCode(s2));
System.out.println(System.identityHashCode(s1.intern()));
System.out.println(System.identityHashCode(s2.intern()));
}
}
运行效果:
true
1870252780
1729199940
1870252780
1870252780
结论:
1、String 重写了equals 方法。所以不同对象但是值相等的时候在equals比较也会返回true,但是hashcode 不一定会相等。
2、synchronized 锁的是对象,这个时候string值相同,但是不同对象,所以就无法锁住。
3、所以使用String 的时候需要使用intern方法。intern是一个 native 的方法,如果常量池中存在当前字符串, 就会直接返回当前字符串. 如果常量池中没有此字符串, 会将此字符串放入常量池中后,再返回,因此intern每次返回同一个对象。这个时候使用synchronized 就可以锁住了。