I
it_says_BALLS_on_your_forehead
has anyone been burned by using:
for ( @list ) {
...blah blah
}
rather than
for my $elem ( @list ) {
...blah blah
}
....? it's probably better to use the latter loop, since it's more
self-documenting, and there's an explicit 'lexicalization' of the list
element to be used in the loop, but many times I like to take advantage
of the shortcuts that come with the $_ variable. regex matching, s///,
print, (others?).
i believe for the vast majority of use cases, it doesn't matter which
loop is employed ( other than the slightly decreased readability of the
first style ), but i was wondering if people could relate experiences
where use of the first style of for loops has bitten them. i have the
same question about:
while ( <$fh> ) {
..blah
}
and
while ( my $line = <$fh> ) {
..blah
}
for ( @list ) {
...blah blah
}
rather than
for my $elem ( @list ) {
...blah blah
}
....? it's probably better to use the latter loop, since it's more
self-documenting, and there's an explicit 'lexicalization' of the list
element to be used in the loop, but many times I like to take advantage
of the shortcuts that come with the $_ variable. regex matching, s///,
print, (others?).
i believe for the vast majority of use cases, it doesn't matter which
loop is employed ( other than the slightly decreased readability of the
first style ), but i was wondering if people could relate experiences
where use of the first style of for loops has bitten them. i have the
same question about:
while ( <$fh> ) {
..blah
}
and
while ( my $line = <$fh> ) {
..blah
}