gpt4 book ai didi

java - 在 Java 中编写继承的 equals() 方法

转载 作者:行者123 更新时间:2023-11-30 02:17:52 25 4
gpt4 key购买 nike

我正在做一个继承问题,除了 boolean 部分之外,我已经完成了所有内容。我的代码可以编译,但是当比较姓名、生日和 ssn 时,它只会显示为 false。

例如我输入:

  • 吉姆
  • 2001 年 6 月 30 日
  • 123456789
  • 吉姆
  • 2001 年 6 月 30 日
  • 123456789

输出将为假。

public class Person
{
private String name;
private Date birthday;
private int ssn;


public Person(String name, Date birthday, int ssn)
{
this.name = name;
this.birthday = birthday;
this.ssn = ssn;
}

public String getName()
{
return name;
}

public Date getBirthday()
{
return birthday;
}


public int getSSN()
{
return ssn;
}
/* I already called a dates toString() method for birthday */
public String toString()
{
return name + " has birthday " + birthday + " and SSN " + ssn;
}


public boolean equals(Object otherObj)
{
if(otherObj == null)
return false;
else if(otherObj.getClass() != this.getClass())
return false;
else
{
Person otherP = (Person)otherObj;
if(otherP.name.equals(this.name) &&
otherP.birthday == this.birthday &&
otherP.ssn == this.ssn)
return true;
else
return false;
}
}
}

最佳答案

这里没有继承。事实上,在从父类(super class)继承的同时编写 equals 方法会引发围绕类设计的完全不同的讨论(更喜欢组合而不是继承)。

在这种情况下,我认为您需要遵循经验法则,即始终使用 equals 方法对所有字段进行逻辑比较。 == 检查用于身份比较,很少可以用于逻辑相等(例如枚举)

另一点需要注意的是,您的类对于使用散列的数据结构会出现错误行为。

Joshua Bloch 所著的《Effective Java》第 3 章详细介绍了该主题

关于java - 在 Java 中编写继承的 equals() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47744760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com