in reply to Re: hash and array mismatch
in thread hash and array mismatch
Very interesting!
At first glance your code didn't look right. So I read more carefully and saw what was bothering me:
push @{$dataPos{$data[$_]}}, $_ for 0 .. $#data;
You are pushing data onto an undefined value that is dereferenced as an array! The script should (I thought) die the first time through the for loop. But it works. So I did some experimentats and read the docs.
I found out that you can do this:
my $foo; # $foo is undefined push @$foo, 23; print "I found @{$foo}\n";
Further testing showed that:
Died as I had expected.push @{ undef() }, 99;
Further tests show that unshift works the same way. Also, pop and shift will create array references.
my $foo = undef; shift @{$foo}; print "Foo: $foo\n"; # prints Foo: ARRAY(0x12121212)
The various docs don't mention this special behavior. Thanks for the education.
TGI says moo
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: hash and array mismatch
by GrandFather (Saint) on May 10, 2007 at 19:19 UTC | |
by TGI (Parson) on May 10, 2007 at 20:19 UTC |