经过研究,我仍然找不到针对我的问题的具体解决方案。我有一个使用 epsilon 的“近似等于”方法,而我的 hashCode 方法使用精确值。当我比较值时,这打破了 HashSet 的先决条件。
@Override
public boolean equals(Object o) {
if (o == this)
return true;
if (!(o instanceof EPoint)) {
return false;
}
EPoint ePoint = (EPoint) o;
return Math.abs(Math.abs(ePoint.lat) - Math.abs(lat)) < EPSILON && Math.abs(Math.abs(ePoint.lon) - Math.abs(lon)) < EPSILON;
}
@Override
public int hashCode() {
return Objects.hash(lat, lon);
}
我找不到使 hasCode() 与我的 equals 方法一致的方法。