Autovivification
From Wikipedia, the free encyclopedia
-
For the generation of life from non-living matter, see Abiogenesis.
Autovivification is a unique feature of the Perl programming language involving the dynamic creation of data structures. Autovivification is the automatic creation of a reference when an undefined value is dereferenced. In effect, this causes access to a nonexistent element of a hash (associative array) or array to create both the hash or array, and all elements below the given index for the array.
This is in contrast to most other high level languages, in which hashes or arrays must be explicitly created before using. This includes Python, PHP, Ruby, JavaScript and all the C style languages.
[edit] Hashes
The debugger session below illustrates autovivification of a hash:
DB<1> $h{A}{B}{C}{D}=1 DB<2> x \%h 0 HASH(0x83c71ac) 'A' => HASH(0x837d50c) 'B' => HASH(0x83c71e8) 'C' => HASH(0x83c7218) 'D' => 1 DB<3>
Hashes several layers deep were created automatically without any declarations. Autovivification can prevent excessive typing. If Perl did not support autovivification, the structure above would have to be created as follows:
DB<1> %h = (A => {B => {C => {D => 1}}}) DB<2> x \%h 0 HASH(0x83caba4) 'A' => HASH(0x83cfc28) 'B' => HASH(0x83cab74) 'C' => HASH(0x83b6110 'D' => 1 DB<3>
[edit] File and Directory Handles
Perl 5.6.1 and newer support autovivification of file and directory handles. Calling open()
on an undefined variable will set it to a filehandle. According to perl561delta, "[t]his largely eliminates the need for typeglobs when opening filehandles that must be passed around, as in the following example:
sub myopen { open my $fh, "@_" or die "Can't open '@_': $!"; return $fh; } { my $f = myopen("</etc/motd"); print <$f>; # $f implicitly closed here }
[edit] External links
- perl561delta: File and directory handles can be autovivified
- Autovivification in Perl: An In-Depth Tutorial
- Autovivification in Ruby - emulate Perl's autovivification