public class Main {
public static void main(String[] args) {
String s1 = "abc";
String s2 = "abc";
System.out.println(s1 == s2);
String s3 = new String("abc");
System.out.println(s1 == s3);
}
} 执行以上程序后,输出结果正确的是?true true
true false
false fasle
false true