Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When a class in Java doesn't override hashCode(), printing an instance of this class gives a nice unique number.

The Javadoc of Object says about hashCode():

As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects.

But when the class overrides hashCode(), how can I get it's unique number?

share|improve this question
3  
Mostly for 'debugging' reasons ;) To be able to say: Ah, same object! – ivan_ivanovich_ivanoff May 26 '09 at 10:07
3  
For this purpose the System.identityHashcode() is likely of some use. I wouldn't rely on it for implementing code functionality, however. If you want to identify objects uniquely, you could use AspectJ and code-weave in a unique id per created object. More work, though – Brian Agnew May 26 '09 at 10:38
4  
Just keep in mind that hashCode is NOT guaranteed to be unique. Even if the implementaiton uses memory address as the default hashCode. Why is it not unique? Because objects get garbage collected, and memory is reused. – Igor Krivokon May 26 '09 at 10:42
1  
Note this CR for API docs: bugs.sun.com/bugdatabase/view_bug.do?bug_id=6321873 – Tom Hawtin - tackline May 26 '09 at 10:43
5  
If you want to decide, if two objects are the same use == instead of hashCode(). The latter is not guaranteed to be unique, even in the original implementation. – Mnementh May 26 '09 at 10:51
show 1 more comment

2 Answers

up vote 83 down vote accepted

System.identityHashCode() will get you the 'original' hash code. Uniqueness isn't necessarily guaranteed, note. The Sun JVM implementation will give you a value which is related to the original memory address for this object, but that's an implementation detail and you shouldn't rely on it.

EDIT: Answer modified following Tom's comment below re. memory addresses and moving objects.

share|improve this answer
Whoa, I never knew that. Thanks for sharing. :) – Emil H May 26 '09 at 9:48
+1 Good knowledge! Hadn't heard of that before either – Harry Lime May 26 '09 at 9:50
Let me guess: it's not unique, when you have more than 2**32 objects in same JVM? ;) Can you point me to some place, where the non-uniqueness it is described? Thanx! – ivan_ivanovich_ivanoff May 26 '09 at 10:10
2  
It doesn't matter how many objects there are, or how much memory there is. Neither hashCode() nor identityHashCode() is required to produce a unique number. – Alan Moore May 26 '09 at 10:33
3  
Brian: It's not the actual memory location, you happen to get a rehashed version of an address when first computed. In a modern VM objects will move about in memory. – Tom Hawtin - tackline May 26 '09 at 10:41
show 3 more comments

The javadoc for Object specifies that

This is typically implemented by converting the internal address of the object into an integer, but this implementation technique is not required by the JavaTM programming language.

If a class overrides hashCode, it means that it wants to generate a specific id, which will (one can hope) have the right behaviour.

You can use System.identityHashCode to get that id for any class.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.