Overriding equals and hashCode in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T13:27:10Z http://stackoverflow.com/feeds/question/27581 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java 31 Overriding equals and hashCode in Java Matt Sheppard 2008-08-26T08:50:26Z 2009-10-12T06:26:56Z <p>What issues / pitfalls do I need to consider when overriding equals and hashCode in a java class?</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27594#27594 19 Answer by WMR for Overriding equals and hashCode in Java WMR 2008-08-26T08:58:50Z 2008-08-26T08:58:50Z <p>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 <a href="http://java.sun.com/developer/Books/effectivejava/Chapter3.pdf" rel="nofollow">online</a></p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27604#27604 5 Answer by Alotor for Overriding equals and hashCode in Java Alotor 2008-08-26T09:09:45Z 2008-08-26T09:09:45Z <p>If you are using Eclipse it has integrated a very cool hashCode / equals generator.</p> <p>You just have to be on a class and do: right click > Source code > Generate hashCode() and equals()...</p> <p>Then, a window will show up and you can choose the fields to include in your methods.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27609#27609 49 Answer by Antti Sykäri for Overriding equals and hashCode in Java Antti Sykäri 2008-08-26T09:12:42Z 2009-05-28T18:54:49Z <h3>The theory (for the language lawyers and the mathematically inclined):</h3> <p>equals() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#equals(java.lang.Object)" rel="nofollow">javadoc</a>) must define an equality relation (it must be <em>reflexive</em>, <em>symmetric</em>, and <em>transitive</em>). In addition, it must be <em>consistent</em> (if the objects are not modified, then it must keep returning the same value). Furthermore, o.equals(null) must always return false.</p> <p>hashCode() (<a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Object.html#hashCode()" rel="nofollow">javadoc</a>) must also be <em>consistent</em> (if the object is not modified in terms of equals(), it must keep returning the same value).</p> <p>The relation between the two methods is:</p> <p><em>Whenever a.equals(b), then a.hashCode() must be same as b.hashCode().</em></p> <h3>In practice:</h3> <p>If you override one, then you should override the other.</p> <p>Use the same set of fields that you use to compute equals() to compute hashCode().</p> <p>Use the excellent helper classes <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/EqualsBuilder.html" rel="nofollow">EqualsBuilder</a> and <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/builder/HashCodeBuilder.html" rel="nofollow">HashCodeBuilder</a> from the <a href="http://commons.apache.org/lang/" rel="nofollow">Apache Commons Lang</a> library. An example:</p> <pre><code>public class Person { private String name; private int age; // ... public int hashCode() { return new HashCodeBuilder(17, 31). // two randomly chosen prime numbers // if deriving: appendSuper(super.hashCode()). 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(). // if deriving: appendSuper(super.equals(obj)). append(name, rhs.name). append(age, rhs.age). isEquals(); } } </code></pre> <h3>Also remember:</h3> <p>When using a hash-based <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Collection.html" rel="nofollow">Collection</a> or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html" rel="nofollow">Map</a> such as <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashSet.html" rel="nofollow">HashSet</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/LinkedHashSet.html" rel="nofollow">LinkedHashSet</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/HashMap.html" rel="nofollow">HashMap</a>, <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Hashtable.html" rel="nofollow">Hashtable</a>, or <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/WeakHashMap.html" rel="nofollow">WeakHashMap</a>, 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, <a href="http://www.javapractices.com/topic/TopicAction.do?Id=29" rel="nofollow">which has also other benefits</a>.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27722#27722 1 Answer by WMR for Overriding equals and hashCode in Java WMR 2008-08-26T10:39:51Z 2008-08-26T10:39:51Z <p>@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 <a href="http://java.sun.com/javase/6/docs/api/java/util/Map.html" rel="nofollow">Javadoc for Map</a>).</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/32223#32223 11 Answer by Ran Biron for Overriding equals and hashCode in Java Ran Biron 2008-08-28T13:16:01Z 2008-08-28T13:16:01Z <p>A clarification about the <em>"obj.getClass() != getClass()".</em></p> <p>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.</p> <p>Consider the following example of what happens when the statement is omitted:</p> <pre><code>class A { int field1; A(int field1) { this.field1 = field1; } public boolean equals(Object other) { return (other != null &amp;&amp; other instanceof A &amp;&amp; ((A) other).field1 == field1); } } class B extends A { int field2; B(int field1, int field2) { super(field1); this.field2 = field2; } public boolean equals(Object other) { return (other != null &amp;&amp; other instanceof B &amp;&amp; ((B)other).field2 == field2 &amp;&amp; super.equals(other)); } } </code></pre> <p>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.</p> <p>This looks all very good, but look what happens if we try to use both classes:</p> <pre><code>A a = new A(1); B b = new B(1,1); a.equals(b) == true; b.equals(a) == false; </code></pre> <p>Obviously, this is wrong.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/33010#33010 2 Answer by erickson for Overriding equals and hashCode in Java erickson 2008-08-28T18:25:36Z 2008-08-29T16:15:27Z <p>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.</p> <ol> <li>Use the <code>instanceof</code> operator.</li> <li>Use <code>this.getClass().equals(that.getClass())</code>.</li> </ol> <p>I use #1 in a <code>final</code> equals implementation, or when implementing an interface that prescribes an algorithm for equals (like the <code>java.util</code> collection interfaces&mdash;the right way to check with with <code>(obj instanceof Set)</code> or whatever interface you're implementing). It's generally a bad choice when equals can be overridden because that breaks the symmetry property.</p> <p>Option #2 allows the class to be safely extended without overriding equals or breaking symmetry.</p> <p>If your class is also <code>Comparable</code>, the <code>equals</code> and <code>compareTo</code> methods should be consistent too. Here's a template for the equals method in a <code>Comparable</code> class:</p> <pre><code>final class MyClass implements Comparable&lt;MyClass&gt; { … @Override public boolean equals(Object obj) { /* If compareTo and equals aren't final, we should check with getClass instead. */ if (!(obj instanceof MyClass)) return false; return compareTo((MyClass) obj) == 0; } } </code></pre> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/39768#39768 0 Answer by matt b for Overriding equals and hashCode in Java matt b 2008-09-02T15:15:59Z 2008-09-02T15:15:59Z <p>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.</p> <p><a href="http://commons.apache.org/lang/userguide.html" rel="nofollow">http://commons.apache.org/lang/userguide.html</a> <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/EqualsBuilder.html" rel="nofollow">http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/EqualsBuilder.html</a> <a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/HashCodeBuilder.html" rel="nofollow">http://commons.apache.org/lang/apidocs/org/apache/commons/lang/builder/HashCodeBuilder.html</a></p> <p>The Javadocs contain some examples on how to use each.</p> <p>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.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/40669#40669 0 Answer by Darren Greaves for Overriding equals and hashCode in Java Darren Greaves 2008-09-02T21:06:47Z 2008-09-02T21:06:47Z <p>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).<br /> These sorts of things are fairly common when doing Hibernate mappings for example.</p> <p>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.<br /> The simplest solution is to not include the getChildren collection in the methods.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/40766#40766 -3 Answer by Apocalisp for Overriding equals and hashCode in Java Apocalisp 2008-09-02T21:50:04Z 2009-02-28T09:53:48Z <p>Here's the Guerilla's guide to equals() and hashCode():</p> <ol> <li>Avoid using them. The design, which favours inheritance over composition, is broken. By extension, so is the collections framework in the standard library. Don't use that either.</li> <li>Make your objects immutable and seal your classes (everything either abstract or final).</li> </ol> <p>Be careful out there.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/54769#54769 0 Answer by binil for Overriding equals and hashCode in Java binil 2008-09-10T17:23:56Z 2008-09-10T17:23:56Z <p>Chapter 3 of Effective Java discusses this in depth. You can read it <a href="http://developer.java.sun.com/developer/Books/effectivejava/Chapter3.pdf" rel="nofollow">here (PDF!)</a></p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/55736#55736 3 Answer by Kevin Wong for Overriding equals and hashCode in Java Kevin Wong 2008-09-11T03:06:45Z 2008-09-11T03:06:45Z <p>For an inheritance-friendly implementation, check out Tal Cohen's solution: [<a href="http://www.ddj.com/java/184405053" rel="nofollow">http://www.ddj.com/java/184405053</a>][1]</p> <p>Summary:</p> <p>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.</p> <p>His solution is to implement equals() by calling another nonsymmetric blindlyEquals() both ways. blindlyEquals() is overridden by subclasses, equals() is inherited, and never overridden.</p> <p>Example:</p> <pre><code>class Point { private int x; private int y; protected boolean blindlyEquals(Object o) { if (!(o instanceof Point)) return false; Point p = (Point)o; return (p.x == this.x &amp;&amp; p.y == this.y); } public boolean equals(Object o) { return (this.blindlyEquals(o) &amp;&amp; o.blindlyEquals(this)); } } class ColorPoint extends Point { private Color c; protected boolean blindlyEquals(Object o) { if (!(o instanceof ColorPoint)) return false; ColorPoint cp = (ColorPoint)o; return (super.blindlyEquals(cp) &amp;&amp; cp.color == this.color); } } </code></pre> <p>Note that equals() must work across inheritance hierarchies if the Liskov Substitution Principle is to be satisfied.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/94938#94938 1 Answer by Asgeir S. Nilsen for Overriding equals and hashCode in Java Asgeir S. Nilsen 2008-09-18T17:53:42Z 2008-09-18T17:53:42Z <p>The first question you should ask is <em>do you really need to?</em> java.lang.Object has implementations of these methods that are sufficient for usage as hashtable keys.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/159945#159945 0 Answer by Dave Griffiths for Overriding equals and hashCode in Java Dave Griffiths 2008-10-01T21:56:47Z 2008-10-01T21:56:47Z <p>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.</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/256447#256447 9 Answer by Johannes Brodwall for Overriding equals and hashCode in Java Johannes Brodwall 2008-11-02T02:58:13Z 2008-11-02T02:58:13Z <p>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!</p> <p><strong>Lazy loaded objects are subclasses</strong></p> <p>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<code>this.getClass() == o.getClass()</code> will return false. For example:</p> <pre><code>Person saved = new Person("John Doe"); Long key = dao.save(saved); dao.flush(); Person retrieved = dao.retrieve(key); saved.getClass().equals(retrieved.getClass()); // Will return false if Person is loaded lazy </code></pre> <p><em>If you're dealing with an ORM using <code>o instanceof Person</code> is the only thing that will behave correctly.</em></p> <p><strong>Lazy loaded objects have null-fields</strong></p> <p>ORMs usually use the getters to force loading of lazy loaded objects. This means that <code>person.name</code> will be null if <code>person</code> is lazy loaded, even if <code>person.getName()</code> forces loading and returns "John Doe". In my experience, this crops up more often in <code>hashCode</code> and <code>equals</code>.</p> <p><em>If you're dealing with an ORM, make sure to always use getters, and never field references in <code>hashCode</code> and <code>equals</code>.</em></p> <p><strong>Saving an object will change it's state</strong></p> <p>Persistent objects often use a <code>id</code> field to hold the key of the object. This field will be automatically updated when an object is first saved. Don't use an id field in <code>hashCode</code>. But you can use it in <code>equals</code>.</p> <p>A pattern I often use is</p> <pre><code>if (this.getId() == null) { return this == other; } else { return this.getId() == other.getId(); } </code></pre> <p>But: You cannot include <code>getId()</code> in <code>hashCode()</code>. If you do, when an object is persisted, it's <code>hashCode</code> changes. If the object is in a <code>HashSet</code>, you'll "never" find it again.</p> <p>In my <code>Person</code> example, I probably would use <code>getName()</code> for <code>hashCode</code> and <code>getId</code> plus <code>getName()</code> (just for paranoia) for <code>equals</code>. It's okay if there are some risk of "collisions" for <code>hashCode</code>, but never okay for <code>equals</code>.</p> <p><em><code>hashCode</code> should use the non-changing subset of properties from <code>equals</code></em></p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/596866#596866 1 Answer by litb for Overriding equals and hashCode in Java litb 2009-02-27T22:05:04Z 2009-02-27T22:05:04Z <p>For equals, look into <strong><a href="http://www.angelikalanger.com/Articles/JavaSolutions/SecretsOfEquals/Equals.html" rel="nofollow">Secrets of Equals</a></strong> by <a href="http://www.angelikalanger.com/" rel="nofollow">Angelika Langer</a>. I love it very much. She's also a great FAQ about <strong><a href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html" rel="nofollow">Generics in Java</a></strong>. View her other articles <a href="http://www.angelikalanger.com/Articles/Topics.html#JAVA" rel="nofollow">here</a> (scroll down to "Core Java"), where she also goes on with Part-2 and "mixed type comparison". Have fun reading them!</p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/720759#720759 0 Answer by harshit for Overriding equals and hashCode in Java harshit 2009-04-06T09:21:06Z 2009-04-06T09:21:06Z <p>another useful link which i went through <a href="http://java-questions.com/use%20of%20hashcode%20and%20equals.html" rel="nofollow">Use of hashcode and equals</a></p> http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/1236892#1236892 0 Answer by brianegge for Overriding equals and hashCode in Java brianegge 2009-08-06T03:59:12Z 2009-10-12T06:26:56Z <p>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 <strong>reflexive</strong>, <strong>symmetric</strong>, and <strong>transitive</strong>; and your hashCode is <strong>consistent</strong>. To build a unit test, simply extend the <a href="http://www.theeggeadventure.com/wikimedia/index.php/EqualityTestCase" rel="nofollow">EqualityTestCase</a> class. For example, to test a <strong>Point</strong> class:</p> <pre><code>public class PointTest extends EqualityTestCase&lt;Point&gt; { public Point getA() { return new Point(0,0); } public Point getB() { return new Point(1,1); } } </code></pre> <p>Additionally, the class will test other common contracts such as Serializable, Comparable and clone. </p>