字符串文本的行为令人困惑
2022-09-01 10:59:25
在下面的代码中,字符串文本的行为非常混乱。
我可以理解第 1 行、第 2 行和第 3 行是 ,但为什么是 4 行?true
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()
我已经检查了这个问题,但它没有解释清楚。
我希望能有一个完整的解释。