|
|
| No such thing as a small change | |
| PerlMonks |
Re: while going through perldsc tutorial...by philcrow (Priest) |
| on Oct 16, 2007 at 19:41 UTC ( #645264=note: print w/ replies, xml ) | Need Help?? |
|
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: 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.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||