This is what I want: !A || (A && B && C) Is this equivalent to the original? !A || A && B && C why or why not?
|
|
|||||||||||||||
|
|
Yes, they are the same. So is the simplified The |
|||
|
|
|
Yes it would. Have a look at the Java operator precedence. As you'll notice, logical AND has higher precedence than logical OR which means that |
|||
|
|
|
Yes the 2 expressions are equal. The reason that you don't need parenthesis in this specific expressions is that the && operator has priority over the || operator. Edit: Here's a nice unit test that checks the equality for all possible values:
The test passes, so the 2 expressions are indeed equal. |
||||
|
Here's your operator Precedence guid in Java. |
|||||||||||
|
|
Operator precedence of a bitwise and (&&) is higher than the bitwise or (||). See http://download.oracle.com/javase/tutorial/java/nutsandbolts/operators.html This means both logical expressions are equal as the A && B && C part of the second logical epxression is evaluated first then it is combined with the !A as you can see in the following table where F1 is your first expression and F2 your second
Following is also the java code to test this
|
|||
|
|
|
To be sure and to be better readable I would suggest to put parantheses around the operations to make the precedence clear. EDIT: This is not only my opinion. It is a recomondation according to MISRA-c (Rule 34) See electronicDesing at the bottom. And since the precendence of && is over || they are the same. |
|||||||||||||||
|