当前位置: 技术问答>java相关
当两个变量指向同一个对象时,equals()方法才会返还true?
来源: 互联网 发布时间:2017-03-27
本文导语: String s = "Gone with the wind"; String t = "Gone with the wind"; System.out.println(s.equals(t));//为什么也返回true? | String类 好象重载了Equals了 | String类已经重载了Equals,你这里的"Gone with the wind"实际...
String s = "Gone with the wind";
String t = "Gone with the wind";
System.out.println(s.equals(t));//为什么也返回true?
String t = "Gone with the wind";
System.out.println(s.equals(t));//为什么也返回true?
|
String类
好象重载了Equals了
好象重载了Equals了
|
String类已经重载了Equals,你这里的"Gone with the wind"实际上是一个
|
这里的equals是比较实际内容,当然相同啦。