Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??

There may be good reason to qualify the seemingly redundant use of the arrow dereferencer between the deepest subscripts. If not solely to understand what is happening in a different way.

...is the same as

${${$VAR1}[0]}{41}

The manner in which dereferencing occurs is different but the result is the same. Most feel the arrow manner is simpler on the brain, being more intuitive once you have grasped the notion of dereferencing.

lets reduce the complexity for a moment

my $VAR2 = [ 101, 201, 42 ]; print $VAR2->[0],' ',${$VAR2}[0]; ------- 101 101

we can now reach the first level reference to the array and by all accounts either syntax is fairly comprehensible.

Lets increase the complexity back up.

my $VAR3 = [ {'101'=>'hel', '201'=>'lo', '42'=>'world'} ]; print $VAR3->[0]->{42},' ',${${$VAR3}[0]}{42}; ------- world world

You can already see the way of the arrow is clearer as the start of the dereference does not accumulate the scalar sigil for each depth of level of complexity. And to be fair this starts literally looking subsequently more expensive too.

The toppler of the cake is that the arrow way also adds the optimisation of saying, hey you know what, seeing as we're already dereferencing here lets not bother making a christmas decoration out of the expression and voila! you get...

print $VAR3->[0]{42}; --- world

Making the array actual, you use dereffing where its needed, not between the first level subscript but between the second level subscript.

my @VAR4 = ( {'101'=>'hel', '201'=>'lo', '42'=>'world'},' dereffed' ); print @VAR4,' ',$VAR4[0]->{42},' ',${$VAR4[0]}{42}; ------- HASH(0x3e81a4) dereffed world world

Comparing the position of the arrow between $VAR3 and $VAR4[0], it would seem this gives us a qualifier for telling us when in a complex structure a 'reference to' or 'an actual' hash/array resides at the first level.

The reason being data structures only hold scalars. The very reason for the requirement of referencing. As a reference to a complex structure is a scalar.

And this of course means the arrow way can safely bah humbug the merry season with all the capacity of your ram.


my $ah={h=>'a'};print %$ah for 0..2;

In reply to Re^3: problem with array of hashes by Don Coyote
in thread problem with array of hashes by Priti24

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-23 21:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found