in reply to Re^4: references--hard vs anonymous operational weirdness
in thread references--hard vs anonymous operational weirdness
The first of the two examples in the grandparent of this post is the "incorrect" code. To cut it down to a minimum
As you can see the same address is being reused. The latest perl review has an article about closures (PDF) that mentions it in passing.for my $tab ( 1 .. 3 ) { my @array = ( 0 .. $tab); printf "Array ref: %s\n", \@array; } __END__ Array ref: ARRAY(0x826acf4) Array ref: ARRAY(0x826acf4) Array ref: ARRAY(0x826acf4)
I don't see how the code is incorrect. In the first example the value of @array is discarded but I could quite legitimately do something like
and the memory location of @array is reused.for my $value ( @values ) { my @array = frobinate($value); foreach my $bit (@array) { drill($bit); } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^6: references--hard vs anonymous operational weirdness
by ikegami (Patriarch) on Mar 23, 2008 at 04:41 UTC | |
by chromatic (Archbishop) on Mar 23, 2008 at 05:44 UTC | |
by ikegami (Patriarch) on Mar 23, 2008 at 06:01 UTC | |
by hipowls (Curate) on Mar 24, 2008 at 10:02 UTC | |
by ikegami (Patriarch) on Mar 24, 2008 at 18:34 UTC | |
by hipowls (Curate) on Mar 24, 2008 at 21:20 UTC | |
by ikegami (Patriarch) on Mar 25, 2008 at 03:47 UTC |