我正在使用 Java 7,并且下面有以下类。我正确地实现了equals
,hashCode
但问题是在下面的 main 方法中返回却equals
为两个对象返回了相同的哈希码。我可以让更多的眼睛来看看这门课,看看我在这里做错了什么吗?false
hashCode
更新:Objects.hash
我用自己的哈希函数替换了调用该方法的行: chamorro.hashCode() + english.hashCode() + notes.hashCode()
. 它返回一个不同的哈希码,这是hashCode
当两个对象不同时应该做的。Objects.hash
方法坏了吗?
对你的帮助表示感谢!
import org.apache.commons.lang3.StringEscapeUtils;
public class ChamorroEntry {
private String chamorro, english, notes;
public ChamorroEntry(String chamorro, String english, String notes) {
this.chamorro = StringEscapeUtils.unescapeHtml4(chamorro.trim());
this.english = StringEscapeUtils.unescapeHtml4(english.trim());
this.notes = notes.trim();
}
@Override
public boolean equals(Object object) {
if (!(object instanceof ChamorroEntry)) {
return false;
}
if (this == object) {
return true;
}
ChamorroEntry entry = (ChamorroEntry) object;
return chamorro.equals(entry.chamorro) && english.equals(entry.english)
&& notes.equals(entry.notes);
}
@Override
public int hashCode() {
return java.util.Objects.hash(chamorro, english, notes);
}
public static void main(String... args) {
ChamorroEntry entry1 = new ChamorroEntry("Åguigan", "Second island south of Saipan. Åguihan.", "");
ChamorroEntry entry2 = new ChamorroEntry("Åguihan", "Second island south of Saipan. Åguigan.", "");
System.err.println(entry1.equals(entry2)); // returns false
System.err.println(entry1.hashCode() + "\n" + entry2.hashCode()); // returns same hash code!
}
}