Your results do not surprise me. I personally think of these two as equivalent:
$hash{foo} ||= keys %hash;
for($hash{foo}) { $_ ||= keys %hash; }
At least, the results agree: the hash element exists (hence, it is counted in keys), before the assignment is called. My rule of thumb is: if you use a hash element as a R/W L-value, then it'll autovivify. It'll even autovivify in the for loop, if the loop body is empty:
for($hash{foo}) { } # results in { 'foo' => undef }

I was surprised to see an exception when using a hash element as a sub parameter:

sub blackbox { ... } blackbox($hash{foo});
may or may not autovivify $hash{foo}, depending on what blackbox() does. For example:
sub blackbox { } # no autovivify
sub blackbox { $_[0] = 123 } # results in { 'foo' => 123 }

Tested with perl 5.8.7


In reply to Re: Are "$hash{$_} ||= 1 + keys %hash" and variants well defined or not? by bart
in thread Are "$hash{$_} ||= 1 + keys %hash" and variants well defined or not? by demerphq

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.