How can I get the reference value of a string object?
If I hava a class like
class T()
{
}
T t = new T();
System.out.println( t);
print out T@a3455467 that is the reference value inside t
but for string? maybe with method hashCode()??
|
|
What you want is the systems identity hash. You can get it by:
The default implementation of
The default implementation of But also the systems identity hash code just garantees to be constant for the same instance (not even unique yet). That need not to be the reference value - whatever this will be in the jvm implementation. The real reference value is opaque, not really offered to the public in java. You cannot transform it to a hex address and have a look into memory or something like that. |
|||||||||||
|
|
From the API:
So yes, it's simply That said, this is not "the reference value of an object". It's just, as it says, the hash code of the object in hexadecimal. Different instances of |
|||||||||
|
No, that is not the reference value of If you have say,
then the reference to the string is stored in |
|||||||
|
|
If you mean Reference Value in the sense of Memory Address of an object, this is meaningless in Java. The memory address of an object can change at any time in the age of copying garbage collectors. Furthermore the size of an address depends on JVM host platform/implementation (32/64 bit, possibly even more in future). |
|||
|
|
|
The overloaded |
|||||||
|