There are two assignment operators, the list assignment operator and the scalar assignment operator. If the LHS of an assignment is some kind of aggregate, the list assignment is used. Otherwise, the scalar assignment is used. The following are considered to be aggregates:
- (...) (any expression in parens)
- @array and @array[...]
- %hash and @hash{...}
- my (...), our (...) and local (...) (state (...) throws an error.)
There are two differences between the operators. The first is the context in which operands are evaluated:
- The scalar assignment evaluates both of its operands in scalar context.
- The list assignment evaluates both of its operands in list context.
The second difference is in what they return:
| Returns | Context in which Assignment Operator is Evaluated |
| scalar | list |
| Operator | scalar assignment | The LHS as lvalue | The LHS as lvalue |
| list assignment | The number of elements returned by RHS | The elements returned by LHS as lvalues |
Note that the right-hand side is used for the list assignment in scalar context.
Finally, here are some examples:
| Examples | Context in which Assignment Operator is Evaluated |
| [any] | scalar | list |
| Operator | scalar assignment | # Array evaluated in scalar context.
my $count = @array;
| # The s/// operates on $copy.
(my $copy = $str) =~ s/\\/\\\\/g;
| # Prints $x.
print($x = $y);
|
| list assignment | # Array evaluated in list context.
my @copy = @array;
| # Only dies if f() returns an empty list.
# This does not die if f() returns a
# false scalar like zero or undef.
my ($x) = f() or die;
my $count = () = f();
| # Prints @x.
print(@x = @y);
|
Related topics:
Update: Added examples.
Update: Incorporated JavaFan's additions.
Update: Removed list slices and mentioned state.
Update: One of the examples in the scalar context column did not depend on context. It has been moved to its own column. Also, added short explanations of examples.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|