我的代码如下
public class EqualsComMetod_Operator {
public static void main(String[] args) {
String s1=new String("Raja");
String s2=new String("Raja");
System.out.println("s1==s2::"+s1==s2);
// Here the text s1==s2:: not printed on my console why??
}
}
输出:
错误的
我将对象作为参考/地址进行比较,并尝试像这样打印:
s1==s2::假
但直接显示假。为什么?