What is the Contract between equals and hashCode method?
What is the Contract between equals and hashCode method If two objects are equals by .equals() then their hashCode must be equals. That is two equivalent object should have the same hashCode that is if r1.equals(r2) is true then r1.hashcode==r2.hashcode is always true. Object class .equals() method and hashCode() method . . . Read more