Overiding the equals method vs creating a new method - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T19:19:21Zhttp://stackoverflow.com/feeds/question/16557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method9Overiding the equals method vs creating a new methodN8g2008-08-19T17:05:26Z2008-08-23T19:50:37Z
<p>I have always thought that the .equals() method in java should be overridden to be made specific to the class you have created. In other words to look for equivalence of two different instances rather than two references to the same instance. However I have encountered other programmers who seem to think that the default object behavior should be left alone and a new method created for testing equivalence of two objects of the same class. </p>
<p>What are the argument for and against overriding the equals method?</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16562#16562-1Answer by Juan Manuel for Overiding the equals method vs creating a new methodJuan Manuel2008-08-19T17:08:39Z2008-08-19T17:08:39Z<p>The Equals method is intended to compare references. So it should not be overriden to change its behaviour.</p>
<p>You should create a new method to test for equivalence in different instances if you need to (or use the CompareTo method in some .NET classes)</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16566#165661Answer by N8g for Overiding the equals method vs creating a new methodN8g2008-08-19T17:13:02Z2008-08-19T17:13:02Z<p>@Juan Manuel
That may be the case in .NET but I think the intent of equals method in Java is different</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16573#1657314Answer by McDowell for Overiding the equals method vs creating a new methodMcDowell2008-08-19T17:14:47Z2008-08-19T17:39:44Z<p>Overriding the equals method is necessary if you want to test equivalence in standard library classes (for example, ensuring a java.util.Set contains unique elements or using objects as keys in java.util.Map objects).</p>
<p>Note, if you override equals, ensure you honour the API contract as described in the documentation. For example, ensure you also override <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html" rel="nofollow">Object.hashCode</a>:</p>
<blockquote>
<p>If two objects are equal according to
the equals(Object) method, then
calling the hashCode method on each of
the two objects must produce the same
integer result.</p>
</blockquote>
<p>EDIT: I didn't post this as a complete answer on the subject, so I'll echo Fredrik Kalseth's statement that overriding equals works best for <a href="http://en.wikipedia.org/wiki/Immutable_object" rel="nofollow">immutable objects</a>. To quote the API for <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html" rel="nofollow">Map</a>:</p>
<blockquote>
<p>Note: great care must be exercised if
mutable objects are used as map keys.
The behavior of a map is not specified
if the value of an object is changed
in a manner that affects equals
comparisons while the object is a key
in the map.</p>
</blockquote>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16574#165740Answer by Michael Sharek for Overiding the equals method vs creating a new methodMichael Sharek2008-08-19T17:15:41Z2008-08-19T17:15:41Z<p>You should only need to override the equals() method if you want specific behaviour when adding objects to sorted data structures (SortedSet etc.)</p>
<p>When you do that you should also override hashCode. </p>
<p>See <a href="http://www.geocities.com/technofundo/tech/java/equalhash.html" rel="nofollow">here</a> for a complete explanation.</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16590#165901Answer by N8g for Overiding the equals method vs creating a new methodN8g2008-08-19T17:21:23Z2008-08-19T17:42:11Z<p>@Eli
The argument I have heard most regarding not overiding the equals method usually boil down to either confusing other developers or running into issues if a framework/library you are utilizing depends on the default implementation of the method. </p>
<p>I would argue that these are both cases where the other programmer is not respecting the intent of the method and relying on the default implementation in a short sighted way.</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16591#165917Answer by David Schlosnagle for Overiding the equals method vs creating a new methodDavid Schlosnagle2008-08-19T17:21:29Z2008-08-19T17:26:53Z<p>I would highly recommend picking up a copy of Effective Java and reading through item 7 obeying the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Object.html" rel="nofollow">equals contract</a>. You need to be careful if you are overriding equals for mutable objects, as many of the collections such as Maps and Sets use equals to determine equivalence, and mutating an object contained in a collection could lead to unexpected results. Brian Goetz also has a pretty good <a href="http://www.ibm.com/developerworks/java/library/j-jtp05273.html" rel="nofollow">overview of implementing equals and hashCode</a>.</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16601#166013Answer by Fredrik Kalseth for Overiding the equals method vs creating a new methodFredrik Kalseth2008-08-19T17:28:02Z2008-08-19T17:28:02Z<p>You should "never" override equals & getHashCode for mutable objects - this goes for .net and Java both. If you do, and use such an object as the key in f.ex a dictionary and then <em>change</em> that object, you'll be in trouble because the dictionary relies on the hashcode to find the object.</p>
<p>Here's a good article on the topic: <a href="http://weblogs.asp.net/bleroy/archive/2004/12/15/316601.aspx" rel="nofollow"><a href="http://weblogs.asp.net/bleroy/archive/2004/12/15/316601.aspx" rel="nofollow">http://weblogs.asp.net/bleroy/archive/2004/12/15/316601.aspx</a></a></p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16816#168160Answer by serg10 for Overiding the equals method vs creating a new methodserg102008-08-19T19:50:42Z2008-08-19T21:12:50Z<p>To be honest, in Java there is not really an argument against overriding <em>equals</em>. If you need to compare instances for equality, then that is what you do. </p>
<p>As mentioned above, you need to be aware of the contract with <em>hashCode</em>, and similarly, watch out for the gotchas around the <a href="http://java.sun.com/javase/6/docs/api/java/lang/Comparable.html" rel="nofollow">Comparable</a> interface - in almost all situations you want the <em>natural ordering</em> as defined by Comparable to be <em>consistent with equals</em> (see the <a href="http://java.sun.com/javase/6/docs/api/java/math/BigDecimal.html" rel="nofollow">BigDecimal</a> api doc for the canonical counter example)</p>
<p>Creating a new method for deciding equality, quite apart from not working with the existing library classes, flies in the face of Java convention somewhat.</p>
http://stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method/16922#169221Answer by James A. Rosen for Overiding the equals method vs creating a new methodJames A. Rosen2008-08-19T20:46:45Z2008-08-19T20:46:45Z<p>@David Schlosnagle <a href="http://beta.stackoverflow.com/questions/16557/overiding-the-equals-method-vs-creating-a-new-method#16591" rel="nofollow">mentions</a> mentions Josh Bloch's <a href="http://rads.stackoverflow.com/amzn/click/0321356683" rel="nofollow">Effective Java</a> -- this is a <strong>must-read</strong> for any Java developer.</p>
<p>There is a related issue: for immutable value objects, you should also consider overriding <code>compare_to</code>. The standard wording for if they differ is in the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Comparator.html" rel="nofollow">Comparable API</a>:</p>
<blockquote>
<p>It is generally the case, but not strictly required that (compare(x, y)==0) == (x.equals(y)). Generally speaking, any comparator that violates this condition should clearly indicate this fact. The recommended language is "Note: this comparator imposes orderings that are inconsistent with equals."</p>
</blockquote>