Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Why does the Perl conditional operator not do what I expect?

by betterworld (Curate)
on Apr 20, 2009 at 10:50 UTC ( [id://758666]=note: print w/replies, xml ) Need Help??


in reply to Why does the Perl conditional operator not do what I expect?

Running this with perl -MO=Deparse,-p gives:

(($condition ? ($a = 2) : $a) = 3);

So your problem is operator precedence. You should parenthize the assignments. (The ternary operator is often found on the right-hand side of an assignment, so it has higher precedence.)

Replies are listed 'Best First'.
Re^2: Why does the Perl conditional operator not do what I expect?
by Anonymous Monk on Apr 20, 2009 at 11:07 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (5)
As of 2024-04-25 14:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found