Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Making variables visible between calls.

by friedo (Prior)
on Dec 12, 2008 at 18:12 UTC ( [id://730004]=note: print w/replies, xml ) Need Help??


in reply to Making variables visible between calls.

Your anonymous subroutine can't see $var since it's compiled in a lexical scope separate from where it's executed. But it can have values passed into it as arguments.

sub create_f { my $func = shift; return sub { my $var = "xpto"; $func->( $var ); } } my $function = create_f( sub { print ">> $_[0] <<\n" } ); $function->();

Update: And if you want to specify the value at runtime, it's as easy as passing it into create_f.

sub create_f { my $func = shift; my $var = shift; return sub { $func->( $var ); } } my $function = create_f( sub { print ">> $_[0] <<\n" }, 'xpto' ); $function->();

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (1)
As of 2024-04-25 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found