It is my understanding that two unequal objects can have the same hashcode. How would this be handled when adding or retrieving from a HashMap java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
They will just be added to the same bucket and In theory you can return the same integer as a hash code for any object of given class, but that would mean that you loose all performance benefits of the hash map and, in effect, will store objects in a list. |
|||
|
|
new Long(n * 0x100000001L)all have a hashCode of 0 forn >= 0– Peter Lawrey Jun 25 '12 at 18:34