本帖最后由 张然龙 于 2014-5-27 20:45 编辑
System.out.println(a.hashCode()==(x+y).hashCode()); //比较内存地址,结果为true,是一样的!!
这不科学.!!!!
同楼主一样寻求答案!!!
String x = "hello";
String y = "world";
String a = "helloworld";
System.out.println(a==(x+y)); //false...
System.out.println(a.hashCode()==(x+y).hashCode()); //true...
|