Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: while going through perldsc tutorial...

by philcrow (Priest)
on Oct 16, 2007 at 19:41 UTC ( [id://645264]=note: print w/replies, xml ) Need Help??


in reply to while going through perldsc tutorial...

In the line marked #WRONG, the reference is always taken to @array which is only allocated once in the program (probably implicitly). Therefore, on each iteration, @array gets new values, and its location gets stored and all those references refer to the last set of values. To fix it, declare @array on each iteration:
my @array = somefunc($i);
Then, new memory is allocated each time and the references are to those different memory areas.

Phil

The Gantry Web Framework Book is now available.

Replies are listed 'Best First'.
Re^2: while going through perldsc tutorial...
by convenientstore (Pilgrim) on Oct 16, 2007 at 21:27 UTC
    i understand now.. thank you

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (6)
As of 2024-04-19 11:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found