If you writeforeach my $region (@regions) { # something happening in the loop }
Perl silently declares a new lexical variable (also named $region) as the iterator variable. The new $region is scoped to the loop block and hides any variable $region from the outer scope. By explicitly putting the my in the foreach, you're reminding yourself of this behaviour. You're avoiding the misconception that the last value of $region will be available after the for loop (it won't, however you try to scope it). If you want that information you have to save it to an outside variable inside the loopmy $region foreach $region (@regions) { # something happening in the loop }
Most of this information lifted from "Non-Lexical Loop Iterators", 'Always declare a for loop iterator variable with my', in "Perl Best Practices", by Damian Conwaymy $latest_region; foreach my $region (@regions) { $latest_region = $region; # something happening in the loop last if (some condition); } print "last region considered was $latest_region\n";
In reply to Re: Declaring a Variable [for BEGINNERS]
by scooper
in thread Declaring a Variable [for BEGINNERS]
by brusimm
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |