When overriding equals in Java, why does it not work to use a parameter other than Object? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T04:36:26Zhttp://stackoverflow.com/feeds/question/309892http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha3When overriding equals in Java, why does it not work to use a parameter other than Object?Kip2008-11-21T19:28:12Z2008-11-21T20:55:25Z
<p>I ran into an interesting behavior recently. It seems that if I override .equals() to take a parameter other than Object, it doesn't get called. Can anyone explain to me why this is happening? It seems to violate my understanding of polymorphism in OOP, but maybe I'm missing something.</p>
<p>Here's much simpler code that shows what I'm seeing:</p>
<pre><code>public class MyClass {
private int x;
public MyClass(int n) { x = n; }
public boolean equals(Object o) { return false; }
public boolean equals(MyClass mc) { return x == mc.x; }
public static void main(String[] args) {
List<MyClass> list = new ArrayList<MyClass>();
list.add(new MyClass(3));
System.out.println("Contains 3? " + list.contains(new MyClass(3)));
}
}
</code></pre>
<p>When this is run, it prints "<code>Contains 3? false</code>". It looks like the equals(Object) function is called, even though there is another that would work. By contrast, if I write equals like this the code works as expected:</p>
<pre><code>public boolean equals(Object o) {
if(!(o instanceof MyClass))
return false;
MyClass mc = (MyClass)o;
return x == mc.x;
}
</code></pre>
<p>Why isn't it figuring out which version of the function to call based on the type of the parameter?</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309920#3099208Answer by p3t0r for When overriding equals in Java, why does it not work to use a parameter other than Object?p3t0r2008-11-21T19:35:57Z2008-11-21T19:35:57Z<p>equals(Object) is overriding a super method; you can <em>not</em> override a super method without using the exact same signature (Well, there are some exceptions like covariant returntypes and exception).</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309924#309924-1Answer by Elliot Vargas for When overriding equals in Java, why does it not work to use a parameter other than Object?Elliot Vargas2008-11-21T19:39:26Z2008-11-21T19:48:11Z<p>Ok let me re-phrase.</p>
<p>(1)Because the compiler eliminates all information regarding to Generics (erasure, see <a href="http://www.angelikalanger.com/GenericsFAQ/FAQSections/TechnicalDetails.html#Type%20Erasure" rel="nofollow">here</a>), and (2) because you cannot override a method without the exact same signature (equals(Object)), (3) during runtime all objects inside the List are treated as Objects and not as instances of MyClass. Hence, the method that gets called is equals(Object) since this is the one that is been overwritten by your class.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309929#30992913Answer by Darron for When overriding equals in Java, why does it not work to use a parameter other than Object?Darron2008-11-21T19:41:23Z2008-11-21T19:41:23Z<p>You're mixing up "overriding" and "overloading".</p>
<p>Overriding -- adding a replacement definition of an existing method for purposes of polymorphism. The method must have the same signature. The signature consists of the name and argument types. Overridden methods are selected at runtime based on the runtime type of the target object.</p>
<p>Overloading -- adding a method with the same name but a different signature. Overloaded methods are selected at compile time based on the compile time type of the target object.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309936#3099363Answer by Ray Tayek for When overriding equals in Java, why does it not work to use a parameter other than Object?Ray Tayek2008-11-21T19:44:06Z2008-11-21T19:44:06Z<p>there are different types of <a href="http://en.wikipedia.org/wiki/Polymorphism_" rel="nofollow">http://en.wikipedia.org/wiki/Polymorphism_</a>(computer_science). java does not do <a href="http://en.wikipedia.org/wiki/Double_dispatch" rel="nofollow">http://en.wikipedia.org/wiki/Double_dispatch</a>.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309946#3099461Answer by John Flinchbaugh for When overriding equals in Java, why does it not work to use a parameter other than Object?John Flinchbaugh2008-11-21T19:47:32Z2008-11-21T19:47:32Z<p>The ArrayList implementation of the contains(Object) method is bound to use Object.equals(Object) method internally, so it'll never know about your overloading of the equals(MyClass) method. Only an overriding method (with matching signature) will be found.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309974#309974-1Answer by InverseFalcon for When overriding equals in Java, why does it not work to use a parameter other than Object?InverseFalcon2008-11-21T19:53:26Z2008-11-21T19:53:26Z<p>You're assuming that the <code>contains()</code> method in <code>List</code> knows the type of the object at runtime, which is incorrect. </p>
<p>Because of erasure, <code>List<MyClass></code> becomes just a regular <code>List</code> at runtime, so the <code>contains()</code> method sees its parameter as an <code>Object</code>, thus invoking Object's <code>equals()</code> instead of the one you defined for <code>MyClass</code> in its execution.</p>
http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/310165#3101651Answer by blizpasta for When overriding equals in Java, why does it not work to use a parameter other than Object?blizpasta2008-11-21T20:55:25Z2008-11-21T20:55:25Z<p>Notice that the method you are calling is defined in the javadoc for ArrayList<code><E</code>> as</p>
<pre><code>boolean contains(Object o)
Returns true if this list contains the specified element.
</code></pre>
<p>instead of</p>
<pre><code>boolean contains(E o)
Returns true if this list contains the specified element.
</code></pre>
<p>Implementation of ArrayList.java:</p>
<pre><code>private transient Object elementData[];
public boolean contains(Object elem) {
return indexOf(elem) >= 0;
}
public int indexOf(Object elem) {
if (elem == null) {
for (int i = 0; i < size; i++)
if (elementData[i]==null)
return i;
} else {
for (int i = 0; i < size; i++)
if (elem.equals(elementData[i]))
return i;
}
return -1;
}
</code></pre>
<p>It uses the equals method defined in the Object superclass since the equals method is not overridden in ArrayList<code><E</code>>'s implementation.</p>
<p>When overriding Object equals in java, you should override the Object hashCode method as well.</p>
<p>Anyway you might want to try the following code:</p>
<pre><code>class A{
public int content;
A(){
this(0);
}
A(int value){
content = value;
}
public boolean equals(Object obj){
System.out.println("overriding equals method");
return this.content == ((A) obj).content;
}
public boolean equals(A a){
System.out.println("overloading equals method");
return this.content == a.content;
}
public static void main(String[] args){
A x = new A(1);
A y = new A(2);
Object z = new A(1);
System.out.println(x.equals(y));
System.out.println(x.equals(x));
System.out.println(x.equals(z));
//override as z is declared as Object at compile time
//so it will use methods in class Object instead of class A
System.out.println(x.equals((Object) y));
System.out.println(x.equals((Object) x));
}
}
//rant: they didn't teach me these in javaschool and I had to learn it the hard way.
</code></pre>