http://www.perlmonks.org?node_id=412088


in reply to Re: List Wrapper for Object Methods.
in thread List Wrapper for Object Methods.

Thanks a lot Arunbear this works nicely.
There's just one thing left for me:
I see that my AUTOLOAD method now also "catches" calls for DESTROY and I don't know exactly what's happening then. Isn't the AUTOLOAD method a litte too generic?

pelagic

Replies are listed 'Best First'.
Re^3: List Wrapper for Object Methods.
by Arunbear (Prior) on Dec 03, 2004 at 12:01 UTC
    To get around that you can add the line
    return if $AUTOLOAD =~ /::DESTROY$/;
    at the beginning of the AUTOLOAD sub, or define a do-nothing DESTROY method (assuming you really don't have any cleanup to do). Perl calls the DESTROY method when it does garbage collection, even if you haven't defined a DESTROY method.