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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You can call System.identityHashCode() and pass your object as parameter, then you will get it. |
|||
|
|
|
More precisely
|
|||
|
|
|
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, ...] |
|||
|
|