如何區分==和 equals

2008-02-23 09:34:24来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

1 如果是基本類型用==和equals結果簡單
2 如果是類型包裝器
2.1 用==時
2.1.1 如果是產生實例 return false
Integer myInt = new Integer(5);
Integer otherInt = new Integer(5);
2.1.2 如果是賦值 return true
Integer myInt = new Integer(5);
Integer otherInt ;
otherInt = myInt;
2.2 用equals
2.2.1 如果類有自己寫equals() return true (多數Double,Float..都已經寫了)
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof MyClass)) {
return false;
}
MyClass castOther = (MyClass) other;
return new EqualsBuilder()
.append(this.getValue(), castOther.getValue())
.isEquals();
}
2.2.1 如果類有自己沒寫equals() return false

上一篇: 在NetBeans平台上开发J2ME游戏实例讲解(第三部分)
下一篇: JSP中图片验证的实现

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Jive论坛学习FAQ

下一篇:JDO学习笔记 Sun JDO参考实现篇