Thanks for your sample code
roboticus. I copied and ran it and discovered that an extra level of dereferencing is required. This was a good exercise in reference accessing. Below is your code with the modifications for the extra level of dereferencing. (Note: I commented out the line labeled "Wrong" so it would compile and run) Thanks again!
my @a = [ 1, 4, 9, 16]; # squares
my @b = [ 1, 8, 27, 64]; # cubes
my @c = [ \@a, \@b ]; # two arrays
my $d = \@a;
my $e = \@c;
# OK: @a is an array
print "Sample1: ", $a[0]->[0], "\n";
# Wrong: "Sample1: ", $d is a reference, not an array!
#print "Sample2: ", $d[0], "\n";
# OK: Both of these are fine, though
print "Sample3: ", $d->[0]->[0], "\n";
print "Sample4: ", $$d[0]->[0], "\n";
# with multiple subscripts:
print "Sample5: ", $e->[0]->[0]->[0]->[0], "\n";
print "Sample6: ", $e->[0][0][0][0], "\n"; # same as above, sin
+ce -> is optional between subscripts
print "Sample7: ", $$e[0][0][0][0], "\n"; # also same as above
"Its not how hard you work, its how much you get done."
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.