I've never see assigning to an empty list used to force a list context. Assigning to an empty list is used to count the number of elements in a list (which has nothing to do with context).
It has to do with context. Assigning to the empty list forces list context upon the RHS. It returns the empty list in list context, and the number of elements of the RHS in scalar context. Consider:
print my $x = ( 'a', 'b', 'c' ); # c
print my @x = () = ( 'a', 'b', 'c' ); # nothing
print my $x = () = ( 'a', 'b', 'c' ); # 3
print my $x = @a = ( 'a', 'b', 'c' ); # 3
print scalar ( 'a', 'b', 'c' ); # c
print +() = ( 'a', 'b', 'c' ); # nothing
print scalar ( () = ( 'a', 'b', 'c' ) ); # 3
update: to make it clearer...
sub bar {
local $\;
print "bar:";
print wantarray ? "list - " : "scalar - ";
return ( "d", "e" );
}
sub foo {
local $\;
print "foo:";
print wantarray ? "list - " : "scalar - ";
return ( "c", bar );
}
$\ = "\n";
print ( 'a', 'b', foo ); # adcde
print scalar ( 'a', 'b', foo ); # e
print +() = ( 'a', 'b', foo ); # nothing
print scalar ( () = ( 'a', 'b', foo ) ); # 5
__END__
foo:list - bar:list - abcde
foo:scalar - bar:scalar - e
foo:list - bar:list -
foo:list - bar:list - 5
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.
|
|