I have a class I created that overloads the ""
operator to print out a nice stringified form of the object that is user-readable.
But now, I'd like to actually get the memory address such as:
Some_class=HASH(0xb0aff98)
which is what I would have normally done by using print "$some_object"
if I had not already overridden the ""
operator.
Is there someway to bypass the overridden method or, failing that, just get the memory address of this object?