Java: How to get the unique ID of an object which overrides hashCode()? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:29:07Z http://stackoverflow.com/feeds/question/909843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/909843/java-how-to-get-the-unique-id-of-an-object-which-overrides-hashcode 6 Java: How to get the unique ID of an object which overrides hashCode()? ivan_ivanovich_ivanoff 2009-05-26T09:42:02Z 2009-05-26T10:43:31Z <p>Hello!</p> <p>When a class in Java doesn't override <strong>hashCode()</strong>, printing an instance of this class gives a nice unique number.</p> <p>The Javadoc of Object says about <strong>hashCode()</strong>:</p> <blockquote> <p><em>As much as is reasonably practical, the hashCode method defined by class Object does return distinct integers for distinct objects.</em></p> </blockquote> <p>But when the class overrides <strong>hashCode()</strong>, how can I get it's unique number?</p> http://stackoverflow.com/questions/909843/java-how-to-get-the-unique-id-of-an-object-which-overrides-hashcode/909861#909861 12 Answer by Brian Agnew for Java: How to get the unique ID of an object which overrides hashCode()? Brian Agnew 2009-05-26T09:46:41Z 2009-05-26T10:43:31Z <p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#identityHashCode%28java.lang.Object%29" rel="nofollow">System.identityHashcode()</a> 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.</p> <p>EDIT: Answer modified following Tom's comment below re. memory addresses and moving objects.</p> http://stackoverflow.com/questions/909843/java-how-to-get-the-unique-id-of-an-object-which-overrides-hashcode/909864#909864 6 Answer by Bishiboosh for Java: How to get the unique ID of an object which overrides hashCode()? Bishiboosh 2009-05-26T09:47:20Z 2009-05-26T09:47:20Z <p>The javadoc for Object specifies that </p> <blockquote> <p>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.</p> </blockquote> <p>If a class overrides hashCode, it means that it wants to generate a specific id, which will (one can hope) have the right behaviour.</p> <p>You can use <a href="http://java.sun.com/javase/6/docs/api/java/lang/System.html#identityHashCode%28java.lang.Object%29" rel="nofollow">System.identityHashCode</a> to get that id for any class.</p>