Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: on the fly methods

by Thelonius (Priest)
on Feb 27, 2007 at 16:54 UTC ( [id://602338]=note: print w/replies, xml ) Need Help??


in reply to on the fly methods

sub makeMethod { my $this = shift; $this->{_coderef} = eval $this->{_codestring} } sub callMethod { my $this = shift; $this->{_coderef}->(@_) }

If you want to do something like this:

$this->makeMethod( "somenewname", "some code" ); $this->somenewname();
then I think you'll have to use AUTOLOAD or some module that provides that functionality.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://602338]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-23 06:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found