| getInternalAddress.Object {R.oo} | R Documentation |
Gets the memory location where the Object resides.
## S3 method for class 'Object'
getInternalAddress(this, format=c("numeric", "hexstring"), ...)
format |
A |
... |
Not used. |
The address is returned as a numeric integer if
format == "numeric", and as a character string if
format == "hexstring".
Henrik Bengtsson
getName().
For more information see Object.
obj <- Object() getInternalAddress(obj, format="numeric") # 179742632 getInternalAddress(obj, format="hexstring") # "0x000000000ab6a7a8"