in reply to Pointers to member functions

What about:
$meth = $obj->can($method_name); $meth->($obj, @args);

_____________________________________________________
Jeff[japhy]Pinyan: Perl, regex, and perl hacker.
s++=END;++y(;-P)}y js++=;shajsj<++y(p-q)}?print:??;

Replies are listed 'Best First'.
Re (tilly) 2: Pointers to member functions
by tilly (Archbishop) on Aug 20, 2001 at 23:29 UTC
    Also note that using a function reference with the method syntax works just fine. Consider the following example where an unnamed method is called from an object in a class with no methods of its own:
    my $foo = bless {}, "bar"; my $meth = sub {shift; print shift}; $foo->$meth("Sneaky");
    (Yeah, I know you know that, but others might find it neat.)