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

I can get the unique id like className@2345 of my object by calling its toString() method, but after I overwrite the toString() method, how can I get that unique id?

share|improve this question
7  
FOR CRYING OUT LOUD, IT'S NOT UNIQUE. (sorry) – Tom Hawtin - tackline Jul 17 '09 at 1:33
True it is just a hash code and not unique indeed. But in most cases I can use it to distinguish the objects. – Andy Jul 17 '09 at 3:13
"In most cases" simply defines probability, not something you typically rely on in software, unless you are writing code for gambling ;-) – Robin Jul 17 '09 at 14:31

3 Answers

up vote 12 down vote accepted

You can call System.identityHashCode() and pass your object as parameter, then you will get it.

share|improve this answer

More precisely

obj.getClass().getName() + "@" + Integer.toHexString(System.identityHashCode(obj))
share|improve this answer
Or just public String identityString() { return super.toString(); } ? – Cowan Jul 19 '09 at 22:33

If you are looking for a one line toString() implementation that will also print the className@address, check out Apache Commons ToStringBuilder.reflectionToString(). This will return a String in the format: className@address[field1=value1, field2=value2, ...]

share|improve this answer
It's not an address but a hash code. – joeslice Jul 17 '09 at 3:09

Your Answer

 
discard

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