标题: String s = new String("hello")和String s = "hello"的区别。 [打印本页] 作者: lizhi1817 时间: 2015-6-19 01:26 标题: String s = new String("hello")和String s = "hello"的区别。 请写出结果:
String s1 = new String("hello");
String s2 = new String("hello");
System.out.println(s1==s2);
System.out.println(s1.equals(s2));