Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re^4: Conditional Operator Confusion

by Melly (Chaplain)
on Nov 30, 2006 at 17:03 UTC ( [id://587012]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Conditional Operator Confusion
in thread Conditional Operator Confusion

Not really... I'm sure I'm being really dumb here, but I still don't understand, in the following example, why $x gets set to "FALSE"... just very, very confused...

1==1?$x='TRUE':$y='FALSE'; print "x=$x\n";
Tom Melly, pm@tomandlu.co.uk

Replies are listed 'Best First'.
Re^5: Conditional Operator Confusion
by ikegami (Patriarch) on Nov 30, 2006 at 17:12 UTC

    The conditional operator has higher precedence than the assignment operator, so
    $c?$x='TRUE':$y='FALSE'
    is the same as
    ($c?$x='TRUE':$y)='FALSE'

    The addition operator has higher precedence than the conditional operator, so
    $c?$x+2:$y+3
    is the same as
    $c?$x+2:($y+3)

    If you want to do assignments, use if or add parens. Think of as the conditional operator as an operator that returns something.

      Thanks - I think I've finally got it (with some help from the chatterbox as well).

      All of which goes to confirm something a coworker once told me..

      Me: What's the precedence in <lang> for these operators?
      CW: Who cares? Use brackets - it's easier to read and
          you won't get screwed...
      
      Tom Melly, pm@tomandlu.co.uk

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://587012]
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: (9)
As of 2024-04-23 09:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found