show/hide this revision's text 2 added 141 characters in body

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 location 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.

show/hide this revision's text 1

System.identityHashcode() will get you the 'original' hash code. Uniqueness isn't necessarily guaranteed, note. The Sun JVM implementation will give you a memory location for this, but that's an implementation detail and you shouldn't rely on it.