真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么在Java中自定義一個equals()方法

這篇文章將為大家詳細(xì)講解有關(guān)怎么在Java中自定義一個equals()方法,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

創(chuàng)新互聯(lián)公司專注于凌河企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),成都做商城網(wǎng)站。凌河網(wǎng)站建設(shè)公司,為凌河等地區(qū)提供建站服務(wù)。全流程按需策劃,專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)公司專業(yè)和態(tài)度為您提供的服務(wù)

public class MyDate implements Comparable {
  private final int year;
  private final int month;
  private final int day;
  public MyDate(int year, int month, int day) {
    this.year = year;
    this.month = month;
    this.day = day;
  }
  @Override
  public int compareTo(MyDate o) {
    throw new NotImplementedException();
  }

  public boolean equals(Date that) {
    if (this.day != that.day) {
      return false;
    }
    if (this.month != that.month) {
      return false;
    }
    if (this.year != that.year) {
      return false;
    }
    return true;
  }
}

但是想要健壯地實現(xiàn)equals()方法,上述代碼是不夠的,參考以下代碼

//定義為final類型:允許子類直接使用父類equals()方法是不安全的
public final class MyDate implements Comparable {
  private final int year;
  private final int month;
  private final int day;
  public MyDate(int year, int month, int day) {
    this.year = year;
    this.month = month;
    this.day = day;
  }
  @Override
  public int compareTo(MyDate o) {
    throw new NotImplementedException();
  }

  @Override
  //規(guī)定參數(shù)必須是Object類型
  public boolean equals(Object obj) {
    //檢查是否相同引用
    if (obj == this) {
      return true;
    }
    //檢查null
    if (obj == null) {
      return false;
    }
    //getClass()判斷的是準(zhǔn)確的運(yùn)行時類型,instanceof的類型可以是父類或接口
    if (obj.getClass() != this.getClass()) {
      return false;
    }
    //這里類型轉(zhuǎn)換一定是安全的
    MyDate that = (MyDate) obj;
    //確認(rèn)關(guān)鍵字段都相等
    if (this.day != that.day) {
      return false;
    }
    if (this.month != that.month) {
      return false;
    }
    if (this.year != that.year) {
      return false;
    }
    return true;
  }
}

自定義equals方法的套路

  • 檢查是否是同一個引用,如果是,返回true

  • 檢查null值,如果是,返回false

  • 檢查類型是否相同,如果不同,返回false;如果相同,進(jìn)行類型轉(zhuǎn)換

對每個關(guān)鍵字段進(jìn)行比較:

4.1 如果字段是基本類型,使用==

4.2 如果字段是對象類型,使用對象的equals()方法

4.3 如果字段是個數(shù)組,比較數(shù)組的每個元素??梢钥紤]使用Arrays.equals(a,b)或者Arrays.deepEquals(a,b),但不是a.equals

(b)

建議

  • 如果一個字段的值完全依賴其他字段的值,可以不用比較

  • 優(yōu)先比較最可能出現(xiàn)差異的字段

  • 如果對象實現(xiàn)了compareTo()方法,可以直接拿來使用。例如x.compareTo(y) == 0

關(guān)于怎么在Java中自定義一個equals()方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


網(wǎng)站題目:怎么在Java中自定義一個equals()方法
文章網(wǎng)址:http://weahome.cn/article/gegddc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部