Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^5: What's happening in this expression?

by haukex (Archbishop)
on Oct 11, 2020 at 14:26 UTC ( #11122702=note: print w/replies, xml ) Need Help??


in reply to Re^4: What's happening in this expression?
in thread What's happening in this expression?

Please, why the statement my $a, $x, $y, $z = foo() is in void context? I don't get it.

If you are unsure about Perl's concept of context, see e.g. the Context tutorial, the section "Context" in Chapter 2 of the Camel, or the section "Context" in Modern Perl.

In the example I showed, perl -e 'my $a, $x, $y, $z = foo()', the statement is in void context because it is the only statement in the program and its return value is not being used anywhere.

In my @foo = ( my $a, $x, $y, $z = foo() ); the statement is in list context because it is being assigned to an array, and in my $bar = ( my $a, $x, $y, $z = foo() ); it's in scalar context. For the last statement in a sub, the context of the caller is used, which is why in the above example, my @x = bar(); the statement my $a, $x, $y, $z = foo(); is in list context and in my $r = bar(); it's in scalar context. If you were to write my $a, $x, $y, $z = foo(); 1;, that would also force void context on the statement.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11122702]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this? | Other CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2023-03-22 03:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    Which type of climate do you prefer to live in?






    Results (60 votes). Check out past polls.

    Notices?