### 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 same set of fields that you use to compute equals() to compute hashCode().

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();
        }
    }

### Also remember:

When using a hash-based [Collection](http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collection.html) or [Map](http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html) such as [HashSet](http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashSet.html), [LinkedHashSet](http://java.sun.com/j2se/1.4.2/docs/api/java/util/LinkedHashSet.html), [HashMap](http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html), [Hashtable](http://java.sun.com/j2se/1.4.2/docs/api/java/util/Hashtable.html), or [WeakHashMap](http://java.sun.com/j2se/1.4.2/docs/api/java/util/WeakHashMap.html), make sure that the hashCode() of the key objects that you put into the collection never changes while the object is in the collection. The bulletproof way to ensure this is to make your keys immutable, [which has also other benefits](http://www.javapractices.com/topic/TopicAction.do?Id=29).