aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes interdependence of equals() and hashCode() Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "interdependence of equals() and hashCode()" Watch "interdependence of equals() and hashCode()" New topic
Author

interdependence of equals() and hashCode()

Barkat Mardhani
Ranch Hand

Joined: Aug 05, 2002
Posts: 787
if x.equals(y) is true, then x.hashCode() == y.hashCode()must be true.
If the above statement is true, why is that contract of equals method does not mention this requirement?
Thanks
Barkat
Alex Radomski
Greenhorn

Joined: Apr 24, 2003
Posts: 24
Hi Barkat,
It does not get mentioned in equals() contract becuase it belongs to hashCode() contract.
Alex

 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: interdependence of equals() and hashCode()
 
Similar Threads
hashCode(), compareTo() and equals()
difference between !=(Not equal) and ^(XOR)
how does equals() work with lists as objects?
Related to String
Mock doubt, a Q about equals contract