Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Array mysteriously growing (autovivification explained)

by Aristotle (Chancellor)
on Mar 11, 2006 at 07:47 UTC ( [id://535908]=note: print w/replies, xml ) Need Help??


in reply to Array mysteriously growing

Congratulations, you have stumbled onto autovivification. :-) To expand on swkronenfeld’s point, this always happens when you dereference an undefined value “en passant”:

undef $_; $_->[0]; print $_; __END__ ARRAY(0x812f180)

This is so you can build deep structures without a lot of checks:

my %bill; while( <$records_fh> ) { my ( $time, $worker, $project ) = split /\t/, $_; push @{ $bill{ $project }{ $worker } }, $time; }

If Perl didn’t autovivify, you would have to write this like so:

my %bill; while( <$records_fh> ) { my ( $time, $worker, $project ) = split /\t/, $_; $bill{ $project } = {} if not exists $bill{ $project }; $bill{ $project }{ $worker } = [] if not exists $bill{ $project }{ $worker }; push @{ $bill{ $project }{ $worker } }, $time; }

Most of the time this implicit creation of anonymous data structures on access is very convenient. However, you have to be mindful of it when you are writing condition checks.

Makeshifts last the longest.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://535908]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-03-29 01:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found