????A??B?????????????????????????????????????????????s????????????????????????????????????????????????????A??B????????????????????????????????s??????????????????????????????????????
????String s1 = new String("xyz"); ?????????????
??????????????κ??????????
??????1?????????????????????Ρ?”xyz”?????????????????????????????????????????”xyz”???????????????????????????????”xyz”????????????????????????????????????????е??
??????2??????δ???????????е????”xyz”???????????String??????????????????????????????????δ??????????е???????????heap?У??????heap?е????????????y???s1 ???С?
???????????????2??????
????java.lang.String.intern()
????????????????????CLass??????????????????????????????????Java?????????????????б????????????????????????CLass????г??????????????????????????????????????????????μ??????????У???????????????????????????String???intern()??????
????String??intern()???????????????????????????equal???????????????????????????????????????????????????????????????
????public static void main(String[] args) {   
????String s1 = new String("?????");
????String s2 = s1.intern();
????String s3 = "?????";
????System.out.println("s1 == s2? " + (s1 == s2));
????System.out.println("s3 == s2? " + (s3 == s2));
????}
????s1 == s2? false
????s3 == s2? true
????????????????????????
????public class Test {
????public static void main(String[] args) {  
????String hello = "Hello"?? lo = "lo";
????System.out.println((hello == "Hello") + " ");
????System.out.println((Other.hello == hello) + " ");
????System.out.println((other.Other.hello == hello) + " ");
????System.out.println((hello == ("Hel"+"lo")) + " ");
????System.out.println((hello == ("Hel"+lo)) + " ");
????System.out.println(hello == ("Hel"+lo).intern());
????}  
????}
????class Other { static String hello = "Hello"; }
????package other;
????public class Other { public static String hello = "Hello"; }
????true true true true false true
?????????????£?????????String????.
???????????????£?????????String????.
????????????????£????????????String????.
??????????.class???????????????????????????????????????String????.
?????????????????????????ж?????????????????????????String????.