The above-named class overrides Object.equals but not Object.hashCode. This violates the restriction that:
a.equals(b) ==> a.hashCode()==b.hashCode()
If our customers use objects of this class as keys in Hashtables or
HashMaps, or elements in HashSets, the basic invariants of the collections will
be corrupted, leading to erratic behavior.
a.equals(b) ==> a.hashCode()==b.hashCode()
If our customers use objects of this class as keys in Hashtables or
HashMaps, or elements in HashSets, the basic invariants of the collections will
be corrupted, leading to erratic behavior.
- relates to
-
JDK-4157612 Many classes violate Object.hashCode contract
-
- Resolved
-