在下面的代码中,字符串文字的行为非常令人困惑。
我可以理解第 1 行、第 2 行和第 3 行是true
,但为什么是第 4 行false
?
当我打印两者的哈希码时,它们是相同的。
class Hello
{
public static void main(String[] args)
{
String hello = "Hello", lo = "lo";
System.out.print((Other1.hello == hello) + " "); //line 1
System.out.print((Other1.hello == "Hello") + " "); //line 2
System.out.print((hello == ("Hel"+"lo")) + " "); //line 3
System.out.print((hello == ("Hel"+lo)) + " "); //line 4
System.out.println(hello == ("Hel"+lo).intern()); //line 5
System.out.println(("Hel"+lo).hashCode()); //hashcode is 69609650 (machine depedent)
System.out.println("Hello".hashCode()); //hashcode is same WHY ??.
}
}
class Other1 { static String hello = "Hello"; }
我知道==
检查引用相等并在池中检查文字。我知道equals()
是正确的方法。我想了解这个概念。
我已经检查了这个问题,但没有解释清楚。
我将不胜感激一个完整的解释。