getInternalAddress.Object {R.oo} | R Documentation |
Gets the memory location where the Object resides
Description
Gets the memory location where the Object resides.
Usage
## S3 method for class 'Object'
getInternalAddress(this, format=c("numeric", "hexstring"), ...)
Arguments
format |
A |
... |
Not used. |
Value
The address is returned as a numeric
integer if
format == "numeric"
, and as a character
string if
format == "hexstring"
.
Author(s)
Henrik Bengtsson
See Also
getName()
.
For more information see Object
.
Examples
obj <- Object()
getInternalAddress(obj, format="numeric") # 179742632
getInternalAddress(obj, format="hexstring") # "0x000000000ab6a7a8"
[Package R.oo version 1.25.0 Index]