### The theory (for the language lawyers and the mathematically inclined): equals() ([javadoc](http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals(java.lang.Object)) must define an equality relation (it must be *reflexive*, *symmetric*, and *transitive*). In addition, it must be *consistent* (if the objects are not modified, then it must keep returning the same value). Furthermore, o.equals(null) must always yield false if o is an object. hashCode() ([javadoc](http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#hashCode()) must also be *consistent* (if the object is not modified, it must keep returning the same value). The relation between the two methods is: *Whenever a.equals(b), then a.hashCode() must be same as b.hashCode().* ### In practice: If you override one, then you should override the other. Maintaining hashCode() and equals() manually can be a tedious job, but the [Apache Commons Lang](http://commons.apache.org/lang/) ([javadoc](http://commons.apache.org/lang/api-release/index.html)) library provides excellent helper classes [EqualsBuilder](http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html) and [HashCodeBuilder](http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/HashCodeBuilder.html) to help with this.