Function
system
object-address object => address
The object whose address should be returned.
The address of object. An integer.
sys:object-address is the same as the one printed by theprint-object method forgeneric-function.
CL-USER 1 > (let ((gf #'initialize-instance))
(format t "address = ~X~%gf = ~S"
(sys:object-address gf) gf))
address = 1cff778
gf = #<STANDARD-GENERIC-FUNCTION INITIALIZE-INSTANCE 1cff778>
NIL
CL-USER 2 >