怎么在Java中自定义一个equals()方法

发布时间:2021-04-16 17:55:45 作者:Leah
来源:亿速云 阅读:236

这篇文章将为大家详细讲解有关怎么在Java中自定义一个equals()方法,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

public class MyDate implements Comparable<MyDate> {
  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;
  }
}

但是想要健壮地实现equals()方法,上述代码是不够的,参考以下代码

//定义为final类型:允许子类直接使用父类equals()方法是不安全的
public final class MyDate implements Comparable<MyDate> {
  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
  //规定参数必须是Object类型
  public boolean equals(Object obj) {
    //检查是否相同引用
    if (obj == this) {
      return true;
    }
    //检查null
    if (obj == null) {
      return false;
    }
    //getClass()判断的是准确的运行时类型,instanceof的类型可以是父类或接口
    if (obj.getClass() != this.getClass()) {
      return false;
    }
    //这里类型转换一定是安全的
    MyDate that = (MyDate) obj;
    //确认关键字段都相等
    if (this.day != that.day) {
      return false;
    }
    if (this.month != that.month) {
      return false;
    }
    if (this.year != that.year) {
      return false;
    }
    return true;
  }
}

自定义equals方法的套路

对每个关键字段进行比较:

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

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

4.3 如果字段是个数组,比较数组的每个元素。可以考虑使用Arrays.equals(a,b)或者Arrays.deepEquals(a,b),但不是a.equals

(b)

建议

关于怎么在Java中自定义一个equals()方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

推荐阅读:
  1. java实现单链表增删改查的实例代码详解
  2. 使用Docker搭建Java环境的步骤方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

java equals

上一篇:使用jQuery怎么实现一个聊天框

下一篇:使用JavaScript怎么实现一个聊天对话框

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》