[求助]“==”的问题
public class Test{public static void main(String[ ] args){
String s = new String("hello");
String ss="hello";
System.out.println(s=="hello");
System.out.println(ss=="hello");
}
}
为什么这两个结果不一样?我觉得2个应该都是false,为什么第2个是true呢 ?希望能解释清楚点..