Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^6: Occurence List (more on autovivification)

by Anonymous Monk
on Oct 12, 2012 at 07:26 UTC ( [id://998620]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Occurence List
in thread Occurence List

Can you cite your sources? Where did you learn about autovivification? in perl?

You offered these two snippets but they're not perl :)

$ perl -le " my $bar[396]++; " syntax error at -e line 1, near "$bar[" Execution of -e aborted due to compilation errors. $ perl -le " my $bar[396]; " syntax error at -e line 1, near "$bar[" Execution of -e aborted due to compilation errors.

$foo is a named variable, it has a name, it doesn't need to be autovified, it exists by virtue of being named, just like @bar is a named variable, it has a name, it doesn't need to be autovivified, it exists by virtue of being named. By default all variables are global.

When you add my $foo; my @bar; you declare $foo and @bar to be lexical variables (not global)

it also has the side effect of satisfying use strict 'vars'; by letting it know you didn't make a typo, that you intended to have variables named $foo and @bar

neither is related to what we call autovivification ; autovivification is about using references to create complex data structures with less clicks of the keyboard

autovivification does not refer to declaring (naming) variables, it is a feature that saves you typing, it saves you from having to write  $foo[6] ||= []; $foo[6][6]=6; you can simply write  $foo[6][6] = 6; and  $foo[6] autovivifies/ becomes an arrayref

explicit, assigning an array ref to  $foo[6] ||= []; $foo[6][6]=6;

implicit, autovivifying an array ref, treat it like an array ref, it becomes an array ref  $foo[6][6] = 6;

autovivification, autovivification, The Bad, the Ugly, and the Good of autovivification, References quick reference, autovivification, autovivification, undefined value as an ARRAY reference sometimes ok, What does Autovivify mean?, Should perl auto vivify here?, Tutorials ...

Replies are listed 'Best First'.
Re^7: Occurence List (more on autovivification)
by Anique (Acolyte) on Oct 12, 2012 at 08:39 UTC

    Thank you for further explaining autovivication to me. However, I would like to note that I said not to use the two snippets you quoted. I am not surprised they result in a syntax error :)

      Thank you for further explaining autovivication to me. However, I would like to note that I said not to use the two snippets you quoted.

      Actually you said "do not have to" and "no need to" and that is different from "not to" (shouldn't)

      I am not surprised they result in a syntax error :)

      "I believe you" :)

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-24 19:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found