powered by
Gets the memory location where the Object resides.
# S3 method for Object getInternalAddress(this, format=c("numeric", "hexstring"), ...)
The address is returned as a numeric integer if
numeric
format == "numeric", and as a character string if
format == "numeric"
character
format == "hexstring".
format == "hexstring"
A character string specifying what format to return.
Not used.
Henrik Bengtsson
getName(). For more information see Object.
getName()
Object
obj <- Object() getInternalAddress(obj, format="numeric") # 179742632 getInternalAddress(obj, format="hexstring") # "0x000000000ab6a7a8"
Run the code above in your browser using DataLab