### The theory (for the language lawyers and the mathematically inclined):
equals() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals(java.lang.Object)">javadoc</a>) 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() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#hashCode()">javadoc</a>) must also be *consistent* (if the object is not modified in terms of equals(), 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.
Use the 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) from the [Apache Commons Lang](http://commons.apache.org/lang/) library. An example:
public class Person {
private String name;
private int age;
// ...
public int hashCode() {
return new HashCodeBuilder(21, 31).
append(name).
append(age).
toHashCode();
}
public boolean equals(Object obj) {
if (obj == null)
return false;
if (obj == this)
return true;
if (obj.getClass() != getClass())
return false;
Person rhs = (Person) obj;
return new EqualsBuilder().
appendSuper(super.equals(obj)).
append(name, rhs.name).
append(age, rhs.age)
.isEquals();
}
}