Perl autovivifies (
http://en.wikipedia.org/wiki/Autovivification) only when it has to, and when it has some idea of what value you want to implicitly create.
In your example, Perl can't create the '$self->{boo}' value implicitly because it has no idea what it should be. It would be inappropriate if it created it with 'undef', '""' or '0'.
$thingy{'someElement'}++;
# vivifies it to '0' before you increment it to '1'
$thingy{'someElement'} .= "Foo!";
# vivifies it to the empty string...
$thingy{'someElement'}{'otherElement'} = "Foo!";
# vivifies someElement to a hash reference
In your case, you would want Perl to create the element 'foo' so that it would exist in the structure of the object, but that would be detrimental in many cases, and make it difficult to check the structure of objects if every element was created when you looked at it.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.