in reply to Comparing ARRAY Ref values
As to the first other, the values you're looking at are -- to all intents and purposes -- pointers to the memory locations (addresses) where the arrays begin. They are NOT, IN ANY SENSE reflective of the values in the arrays themselves.
Update: Demo:
#!/usr/bin/perl use 5.016; my @arr1 = qw(a b c d e); my @arr2 = (3, 5, 7, 9); my $ref1 = \@arr1; my $ref1a = \@arr1; my $ref2 = \@arr2; say "\$ref1: $ref1 and \$ref1a: $ref1a"; say "\$ref2: $ref2; \@$ref2: @$ref2;" #Second half DEREFs the referen +ce =head demo C:\>1032768-refs.pl $ref1: ARRAY(0x119ee3c) and $ref1a: ARRAY(0x119ee3c) $ref2: ARRAY(0x119f12c); @ARRAY(0x119f12c): 3 5 7 9;
See the tuts here at References.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Comparing ARRAY Ref values
by filipebean (Novice) on May 09, 2013 at 14:31 UTC |