I wonder why ruby give and, or less precedence than &&, || , and assign operator? Is there any reason?
|
|
||||
|
|
|
My guess is that's a direct carry-over from Perl. The operators For example, in Perl, here we wish that
and be sure that the An example in Ruby where you could use
If you used |
|||||||||||||
|
|
They have very low precedence so that the operands don't have to be wrapped in parentheses, as is sometimes the case with |
||||
|
|
|
The difference is precedence.
You would have to do:
to get same effect. If you do:
The result of expression would still be 0, but a value would be nil. |
||||
|
|
|
Being able to control the precedence of your operators is sometimes useful, especially if you are concerned with readability -- extra parenthesis in conditional statements can sometimes obscure the actual logic. To be frank, though, I think the reason Ruby has the boolean operator precedence levels it does stems mostly from the fact that Matz was a Perl programmer before he ever wrote Ruby, and borrowed much of the core syntax and operators from that language. |
|||
|
|
|
I believe the idea is specifically to get them below the assignment operators, so you can write logic tests with assignments but without parens. |
|||
|
|