I'm sending a subroutine a hash, and fetching it with my($arg_ref) = @_;
But what exactly is %$arg_ref? Is %$ dereferencing the hash?
Thanks! =)
|
|
|
|
|
|
|
To quote from
So your example would be:
To create a hash reference you could start with a hash:
Or you can create it with an anonymous hash reference:
|
||||||||||
|
|
|
Instead of dereferencing the entire hash like that, you can grab individual items with
|
||
|
|
|
|
A good brief introduction to references (creating them and using them) in Perl is |
||
|
|
|
|
Soo, what's the point of the syntax flexibility? Let's try this:
Actually for deep data structures like this it's often more convenient to start with a ref:
OK, so fred gets a new pet, 'Velociraptor'
How many pets does Fred have? scalar @ {flintstones->{fred}->{pets} } Let's feed them ...
and so on. The curly-bracket soup can look a bit daunting at first, but it becomes quite easy to deal with them in the end, so long as you're consistent in the way that you deal with them. |
|||
|
|
|
|
Since it's somewhat clear this construct is being used to provide a hash reference as a list of named arguments to a sub it should also be noted that this
may be overkill as opposed to just unpacking @_
Depending on how complex the argument list is. |
||
|
|