By explicitly accessing the non-existent array element, perl extends the array and populates those new values with undefs,

No, simply accessing non-existent array elements doesn't extend the array.

$ perl -le'my @a; print 0+@a; my @x = $a[0]; print 0+@a;' 0 0

The array is only extended if the element is used as an l-value.

$ perl -le'my @a; print 0+@a; \$a[0]; print 0+@a;' 0 1 $ perl -le'my @a; print 0+@a; 1 for $a[0]; print 0+@a;' 0 1

But not every time it's used as an l-value.

$ perl -le'my @a; print 0+@a; sub {}->( $a[0] ); print 0+@a;' 0 0

This is a manifestation of autovivification.

Yes and no.

The extension of an array or hash can be considered autovivification, but the term usually refers to the creation of new variables by dereferences. Specifically, the document to which you linked only discusses the creation of new variables by deferences, so it's not a useful link.


In reply to Re^2: Question: Is undef a valid argument? by ikegami
in thread Question: Is undef a valid argument? by jujiro_eb

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.