Hello, I have a question regarding the use of hashes. I'm reading some tutorials a the moment and it uses the following as an example of a hash table variable:

my $address = { Name => 'Bernd Dulfer', Str => 'Kapellenstr. 1', EMail => 'bdulfer@sybase.com', Books => [ 'Lord of the Rings', 'Hitchhikers Guide to the Galaxy', 'The Color of Magic' ] }; print 'Other name: ', $address->{Name}, "\n";

Is $address just being used as a reference in this context? What's the difference if I do the following:

my %address = ( Name => 'Bernd Dulfer', Str => 'Kapellenstr. 1', EMail => 'bdulfer@sybase.com', Books => [ 'Lord of the Rings', 'Hitchhikers Guide to the Galaxy', 'The Color of Magic' ] ); print 'Other name: ', %address->{Name}, "\n";

I noticed that the compiler noted that accessing a hash like that is deprecated. The former is a reference, and the following is directly accessing the variable, no? If the latter is deprecated, should I use the former method to always refer to a hash table? Thank you!

Edit: Also, why would adding a key to the hash cause a compilation error? E.g.

my $address{Bernd} = {

causes

syntax error at ./sixth.pl line 14, near "$address{Bernd" Execution of ./sixth.pl aborted due to compilation errors.

What causes that?


In reply to Regarding Initialization and Use of Hashes by Zaemz

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.