Today, I stumbled over something in Perl I was not aware of: it \"localizes\" the variable that the elements of the list iterated over is assigned to.
This, of cours
The investigated behavior is documented in Foreach Loops in perlsyn
The
foreach
loop iterates over a normal list value and sets the scalar variable VAR to be each element of the list in turn. If the variable is preceded with the keywordmy
, then it is lexically scoped, and is therefore visible only within the loop.
which continues to the explanation
Otherwise, the variable is implicitly local to the loop and regains its former value upon exiting the loop. If the variable was previously declared with
my
, it uses that variable instead of the global one, but it's still localized to the loop.
Thus there should be no difference between localizing it with my
or leaving that to foreach
.
A little curiosity is that
This implicit localization occurs only in a
foreach
loop.
All this is further clarified in this snippet from Private Variables via my() from perlsub
The
foreach
loop defaults to scoping its index variable dynamically in the manner oflocal
. However, if the index variable is prefixed with the keywordmy
, or if there is already a lexical by that name in scope, then a new lexical is created instead.
Since a new lexical is created inside in both cases there cannot be any practical difference.
I absolutely support and recommend (always) having a my
there.