What issues / pitfalls do I need to consider when overriding equals and hashCode in a java class?
|
15
|
|
|
|
|
|
The theory (for the language lawyers and the mathematically inclined):equals() (javadoc) 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 return false. hashCode() (javadoc) 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 and HashCodeBuilder from the Apache Commons Lang library. An example:
Also remember:When using a hash-based Collection or Map such as HashSet, LinkedHashSet, HashMap, Hashtable, or WeakHashMap, 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. |
||||||||||||
|
|
|
I am just referring you to items 7 and 8 in Josh Blochs excellent book "Effective Java", it has all the traps and pitfalls you need to know. The relevant chapter is even available online |
||
|
|
|
|
A clarification about the "obj.getClass() != getClass()". This statement is the result of equals() being inheritance unfriendly. The JLS (Java language specification) specifies that if A.equals(B)==true then B.equals(A) must also return true. If you omit that statement inheriting classes that override equals() (and change it's behavior) will break this specification. Consider the following example of what happens when the statement is omitted:
Doing new A(1).equals(new A(1)) Also, new B(1,1).equals(new B(1,1)) result give out true, as it should. This looks all very good, but look what happens if we try to use both classes:
Obviously, this is wrong. |
||
|
|
|
|
There are some issues worth noticing if you're dealing with classes that are persisted using an Object-Relationship Mapper (ORM) like Hibernate. If you didn't think this was unreasonably complicated already! Lazy loaded objects are subclasses If your objects are persisted using an ORM, in many cases you will be dealing with dynamic proxies to avoid loading object too early from the data store. These proxies are implemented as subclasses of your own class. This means that
If you're dealing with an ORM using Lazy loaded objects have null-fields ORMs usually use the getters to force loading of lazy loaded objects. This means that If you're dealing with an ORM, make sure to always use getters, and never field references in Saving an object will change it's state Persistent objects often use a A pattern I often use is
But: You cannot include In my
|
||
|
|
|
If you are using Eclipse it has integrated a very cool hashCode / equals generator. You just have to be on a class and do: right click > Source code > Generate hashCode() and equals()... Then, a window will show up and you can choose the fields to include in your methods. |
||
|
|
|
|
For an inheritance-friendly implementation, check out Tal Cohen's solution: [http://www.ddj.com/java/184405053][1] Summary: In his book Effective Java Programming Language Guide (Addison-Wesley, 2001), Joshua Bloch claims that "There is simply no way to extend an instantiable class and add an aspect while preserving the equals contract." Tal disagrees. His solution is to implement equals() by calling another nonsymmetric blindlyEquals() both ways. blindlyEquals() is overridden by subclasses, equals() is inherited, and never overridden. Example:
Note that equals() must work across inheritance hierarchies if the Liskov Substitution Principle is to be satisfied. |
||
|
|
|
|
There are a couple of ways to do your check for class equality before checking member equality, and I think both are useful in the right circumstances.
I use #1 in a Option #2 allows the class to be safely extended without overriding equals or breaking symmetry. If your class is also
|
|||
|
|
|
|
@Konrad Rudolph: this is wrong, hashCode() may very well return a different value, if any information used in equals comparisons has changed. You are right in saying, that it's best to use immutable objects as Map keys. The behaviour of all Maps (not just HashMap) is not specified if you change an object, that is used as a key for a Map, in a way that its behaviour of the equals method is changed (see Javadoc for Map). |
||
|
|
|
|
The first question you should ask is do you really need to? java.lang.Object has implementations of these methods that are sufficient for usage as hashtable keys. |
||
|
|
|
|
For equals, look into Secrets of Equals by Angelika Langer. I love it very much. She's also a great FAQ about Generics in Java. View her other articles here (scroll down to "Core Java"), where she also goes on with Part-2 and "mixed type comparison". Have fun reading them! |
||
|
|
|
|
There is an Apache Commons package that provides an EqualsBuilder and HashCodeBuilder, which use the methods described in Bloch's Effective Java, so that instead of re-coding the algorithm yourself for each Object you can use EqualsBuilder and HashCodeBuilder as helpers. http://commons.apache.org/lang/userguide.html http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/EqualsBuilder.html http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/HashCodeBuilder.html The Javadocs contain some examples on how to use each. I think the project has been around for quite a while, but I'm not sure how widely used it is or if it's functionality isn't covered in more recent versions of the JDK. |
||
|
|
|
|
One gotcha I have found is where two objects contain references to each other (one example being a parent/child relationship with a convenience method on the parent to get all children). If you include both ends of the relationship in your hashCode or equals tests it's possible to get into a recursive loop which ends in a StackOverflowException. |
||
|
|
|
|
Chapter 3 of Effective Java discusses this in depth. You can read it here (PDF!) |
||
|
|
|
|
Make sure you produce a reasonably pseudo-random distribution of hashCodes otherwise you may end up with a lot of hash table entries in the same bucket and your performance will suffer. One simple technique I have sometimes used is to create a String representation of the object and return the hashCode of that. |
||
|
|
|
|
another useful link which i went through Use of hashcode and equals |
||
|
|
|
|
I have an abstract test case which I can use to test an object's equal/hashCode methods. This test will attempt to verify that your equals method is reflexive, symmetric, and transitive; and your hashCode is consistent. To build a unit test, simply extend the EqualityTestCase class. For example, to test a Point class:
Additionally, the class will test other common contracts such as Serializable, Comparable and clone. |
|||
|
|
|
|
Here's the Guerilla's guide to equals() and hashCode():
Be careful out there. |
|||
|
|
