Today someone asked about what the following code is doing:
my ($foo, $bar) = @{shift(@_)}{qw/ -foo -bar /};
I thought it's a good idea to add the explanation to the above idiom to the tutorial. (Although tye probably thinks that this is a bad idiom. :-)
What the above code is doing:
shift(@_)
# get an element from the parameter list
qw/ -foo -bar /
# creates a list of two strings: "-foo" and "-bar"
@{ shift(@_) }{ qw/ -foo -bar / }
# dereference the anonymous hash reference as a hash slice
# returns a list containing the values of the given keys
# in the anonymous hash, in the form of:
#
# @values = @hash{@keys}
my ($foo, $bar) = @{ shift(@_) }{ qw/ -foo -bar / };
# assign the two element list retrieved into $foo and $bar
This technique can be used to retrieve named parameters in a subroutine. For example:
foobar({ -foo => 'FOO', -bar => 'BAR' });
sub foobar
{
my ($foo, $bar) = @{shift(@_)}{qw/ -foo -bar /};
print "\$foo => $foo, \$bar => $bar\n";
}
Which I think is pretty handy.
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, 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, 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.
|
|