aspose file tools
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes hash codes for classes that do not implement the hashCode() method Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "hash codes for classes that do not implement the hashCode() method" Watch "hash codes for classes that do not implement the hashCode() method" New topic
Author

hash codes for classes that do not implement the hashCode() method

Rachel Glenn
Ranch Hand

Joined: Oct 24, 2012
Posts: 95
Suppose I have a class called Dog, as follows:




This class does not implement the hashCode() method.

Is it guaranteed then that all instances of Dog will produce unique hash codes (that I assume are generated by the java run time) ?
Matthew Brown
Bartender

Joined: Apr 06, 2010
Posts: 3795
    
    1

There's no guarantee they'll be unique. Thing about this: you can create more objects than there are int values, in which case you'd have to have duplicate hash codes. But there's a good chance that they will be distinct.
 
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: hash codes for classes that do not implement the hashCode() method
 
Similar Threads
HashMap question
tricky question about HashMap + equals
hashcode
How many objects can you create in JVM with very large RAM.
What's the difference between hashcode() and equals() methods?