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

Re: Dynamic Hash value

by arc_of_descent (Hermit)
on Apr 21, 2010 at 07:48 UTC ( [id://835981]=note: print w/replies, xml ) Need Help??


in reply to Dynamic Hash value

You can create scalar references to $ini and $last, and use these references in your %results hash. Then when you change the values of $ini and $last, the hash will refer to the changed values. Read up on references here - perlref
my $ini = 5; my $ini_ref = \$ini; print $$ini_ref; # outputs 5 $ini = 6; print $$ini_ref; outputs 6

Replies are listed 'Best First'.
Re^2: Dynamic Hash value
by LanX (Saint) on Apr 21, 2010 at 07:57 UTC
    no in this case it's not that simple because the scalars are not only referenced but also part of a calculation.

    Cheers Rolf

Log In?
Username:
Password:

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

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

    No recent polls found