Berkeley CSUA MOTD:Entry 26193
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2002/10/15-16 [Computer/SW/Languages/Perl] UID:26193 Activity:nil
10/15   Alright, another perl question (I'm learning...)
        I have a 2D hash of refernces to hashes; is there some way to do the
        following in one line?
                my $ref = $myHash{"a"}{"1"};
                my $dataVal = $$ref{$someIndex};
        Thanks alot.
        \_ I think you want
                my $val = $myhash{a}{1}{$someIndex}
           assuming you have something like
                %myhash = (
                    'a' => {
                        '1' => {
                            'someIndex' => 'someValue'
                        }
                    }
                );
            Basically any hash (or array) dereferences after the first
            assume that you're accessing a reference to an array or hash.
            This means that $foo->{bar}->[baz]->{garply} is equivalent to
            $foo->{bar}[baz]{garply}.  Note that the first dereference
            requires the -> operator if $foo is a reference (in this case,
            to a hash).  Confused yet? -geordan
            \_ Yeah I'm confused.  Where the hell did you come up with garply?
               \_ 'garply' the word or 'garply' the key to an anonymous
                  hash in an anonymous array in an anonymous hash in
                  a hashref?  (Heh.) -geordan
            \_ Actually, I think that makes sense. Thanks. I was trying this:
                   my $val = $$myhash{a}{1}{$someIndex};
               which is more like what I would do if it was a scalar with a
               reference... but I think I understand the distinction now. cool.
                                                                        - op