今天看到一道习题,本人是初学者,请高手看一下下面的代码片段的输出是什么?这道习题书上没有给出答案!
Object s1 = new String("Hello");
Object s2 = new String("Hello");
if(s1 == s2)
{
System.out.println("s1 and s2 are ==");
}
else if (s1.equals(s2))
{
System.out.println("s1 and s2 are equals()");
}
我自己感觉应该是s1 and s2 are equals() 但是不确定 请高手指教! |
|