I'm having tough time in understanding why the following works:
my $array_reference;
foreach $element (@{$array_reference}) {
# some code
}
while the following does not work
my $array_reference;
if (scalar (@{$array_reference}) {
# some code here
}
I understand that perl brings to life (auto-vivifies) undefined reference. But I am still confused as in why the latter code segment throws FATAL.
ifcomes after theforeach, but not vice-versa. I think this is just an obscure (undocumented?) detail of Perl, but I am curious to see the answers. – Nemo Jun 21 '11 at 2:20foreachon the undefined reference, the reference is no longer undefined... So you can callscalar @$referenceon it successfully. – Nemo Jun 21 '11 at 2:29