vote up 7 vote down star
1

Hello!

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?

flag

63% accept rate
Why do you need it? – Igor Krivokon May 26 at 9:50
Mostly for 'debugging' reasons ;) To be able to say: Ah, same object! – ivan_ivanovich_ivanoff May 26 at 10:07
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 at 10:38
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 at 10:42
2  
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 at 10:51
show 1 more comment

2 Answers

vote up 13 vote down check

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.

link|flag
Whoa, I never knew that. Thanks for sharing. :) – Emil H May 26 at 9:48
+1 Good knowledge! Hadn't heard of that before either – Harry Lime May 26 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 at 10:10
1  
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 at 10:33
1  
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 at 10:41
show 1 more comment
vote up 6 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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