What is meant by compatible equals() and hashCode() methods?
Created Jan 15, 2001
John Zukowski In order for the Java Collections to work properly (and everything else in Java), the equals() and hashCode() methods must be compatible. Here, compatible means that if equals() reports that two instances are the same, then the hashCode() of both instances must be the same value.