Can someone please explain why hashCode is called in the example below?
import java.util.List;
public class JSSTest extends Object{
public static void main(String args[]){
JSSTest a = new JSSTest();
JSSTest b = new JSSTest();
List<JSSTest> list = new java.util.ArrayList<JSSTest>();
list.add(a);
list.add(b);
System.out.println(list.get(0));
System.out.println(list.get(1));
}
@Override
public boolean equals(Object obj){
System.out.println("equals");
return false;
}
@Override
public int hashCode(){
System.out.println("hashCode");
return super.hashCode();
}
}
Outcome:
hashCode 0
JSSTest@1bab50a
hashCode 0
JSSTest@c3c749
The default
toString()implementation callshashCode. This has nothing to do with lists.Here’s a fairly minimal repro:
(You could override
toString()to display before / super call / after details, too.)It’s documented in
Object.toString():