vote up 2 vote down star
1

We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that they had the same precedence, I had doubts, so I looked it up.

According to MSDN AND (&&) has higher precedence than OR (||). But, can you prove it to a skeptical coworker?

http://msdn.microsoft.com/en-us/library/aa691323(VS.71).aspx

bool result = false || true && false; // --> false
// is the same result as
bool result = (false || true) && false; // --> false
// even though I know that the first statement is evaluated as 
bool result = false || (true && false); // --> false

So my question is how do you prove with code that AND (&&) has a higher precedence that OR (||)? If your answer is it doesn't matter, then why is it built that way in the language?

flag
8  
It's that way in the language because they have to make a decision. Personally, I don't care which has precedence; I'd use parenthesis to make sure I'm getting the result I expect. It's not about why it does what it does; it's about being able to figure out what the code is doing when you back to it weeks, months or years later. – Jeff S Jul 28 at 21:04
11  
@Jeff: That's not correct. There is a mathematical basis for this decision - it's called boolean algebra. – EFraim Jul 28 at 21:09
2  
@TheSteve: short-circuiting is not affecting expression result. It only affects side effects. – EFraim Jul 28 at 21:11
1  
The fact that you even have to consider it means you shouldn't rely on the next guy knowing, if there is a question that anyone in the office might possibly have to spend 3 seconds thinking about it, then invest the .5 seconds to add a ( and a ) – Bill K Jul 28 at 21:59
10  
Let me see if I've got this straight. Your coworker has a belief about the language. That belief is contradicted by both the specification and the implementation. Your claim is consistent with the specification and the implementation. So why are YOU the one trying to construct a proof? The burden up proof is upon the person who has the crazy belief, not the person who has the sensible belief. I wouldn't waste any more time on this; if they want to spend their time trying to prove something false, let 'em. – Eric Lippert Jul 28 at 22:00
show 2 more comments

9 Answers

vote up 3 vote down

Wouldn't this get you what you're after? Or maybe I'm missing something...

bool result = true || false && false;
link|flag
This distinguishes between && having higher precedence and || having higher precedence, but does not distinguish between || having higher precedence and && and || having equal precedence. Remember that if operators are equal in precedence they are simply evaluated left-to-right. – Tyler McHenry Jul 28 at 21:12
I should say though that this does work as a proof for C# in particular (or really any normal language), since the actual result you do get is unambiguous. It's just not a general method for working out the relative precedence in case you're up against an esoteric language that contradicts boolean algebra on purpose. – Tyler McHenry Jul 28 at 21:19
vote up 17 vote down

Change the first false by true. I know it seems stupid to have (true || true) but it proves your point.

bool result = true || true && false; // --> true 
result = (true || true) && false; // --> false
result = true || (true && false); // --> true
link|flag
Nice example of why it is important. – RichardOD Jul 28 at 21:11
What if you reverse the order of the operators? Just to ensure that it isn't the result of some short-circuiting element. – JB King Jul 28 at 21:40
4  
Short circuiting only ever occurs when the result of the boolean expression is known; short circuiting can not change the result of a boolean expression. – Captain Segfault Jul 28 at 22:01
2  
@James, no it would not.. If || had higher precedence, then the expression would be equivilent to (true || true) && false => False, not true, because thafter evaluating {true || true) as true, what would be left is true && false, which would NOT create a short circuit – Charles Bretana Jul 28 at 23:15
3  
Could we just stop all this non-sense, which seems to repeat itself ad-nauseum?! Repeat with me : SHORT-CIRCUITING DOES NOT CHANGE RESULT. Short-circuiting only applies when the result is already known. SHORT-CIRCUITING ONLY AFFECTS SIDE-EFFECTS – EFraim Jul 29 at 5:42
show 6 more comments
vote up 1 vote down

false || true && true

Yields: true

false && true || true

Yields: true

link|flag
vote up 6 vote down

You don't prove it with code but with logic. AND is boolean multiplication whereas OR is boolean addition. Now which one has higher precedence?

link|flag
1  
In some languages, neither one does (e.g. Smalltalk). Analogies can be deceiving. – Pavel Minaev Jul 28 at 21:28
That's not analogy. That's reasoning behind this particular feature of C-family languages. – EFraim Jul 28 at 21:42
By the way the Smalltalk sample is not really representative: it has no operator precedence for math operators at all. In the same way you could argue they have the same precedence in Scheme. – EFraim Jul 28 at 21:49
Just let me undestand the reason for the downvote: a). You don't agree with principles of boolean algebra. b). You don't know what it is. – EFraim Jul 29 at 5:43
vote up 0 vote down

There are two entities -- one tells the truth and the other always lies...

link|flag
That's supposed to be a comment I guess – EFraim Jul 28 at 21:50
Actually it's from a old riddle referenced by a scene in the movie 'Labyrith' this thread reminded me of when I read it... not truly relevant to the 'overflowing of stacks', but I was moved to giv e it a mention anyhow. – Hardryv Jul 29 at 16:37
vote up 2 vote down

If you really want to freak him out try:

bool result = True() | False() && False();

Console.WriteLine("-----");
Console.WriteLine(result);

static bool True()
{
    Console.WriteLine(true);
    return true;
}

static bool False()
{
    Console.WriteLine(false);
    return false;
}

This will print:

True
False
False
-----
False

Edit:

In response to the comment:

In C#, | is a logical operator that performs the same boolean logic as ||, but does not short-circuit. Also in C#, the | operator has a higher precedence than both || and &&.

By printing out the values, you can see that if I used the typical || operator, only the first True would be printed - followed by the result of the expression which would have been True also.

But because of the higher precedence of |, the true | false is evaluated first (resulting in true) and then that result is &&ed with false to yield false.

I wasn't trying to show the order of evaluation, just the fact that the right half of the | was evaluated period when it normally wouldn't be :)

link|flag
a. Why mixing boolean and bitwise operator? b. Why do you insist on printing it? What the order of evaluation has to do with it? – EFraim Jul 28 at 21:46
Response to response: | is still binary. It is just that for bool it performs the desired operation - as it does in C++. To clarify it MS documents it as logical for bool's. But IMHO it just muddies water. – EFraim Jul 28 at 22:03
This would be an amusing prank. :) – James Jul 28 at 23:12
vote up -1 vote down

You cannot just show the end result when your boolean expressions are being short-circuited. Here's a snippet that settles your case.

It relies on implementing & and | operators used by && and ||, as stated in MSDN 7.11 Conditional logical operators

public static void Test()
{
    B t = new B(true);
    B f = new B(false);

    B result = f || t && f;

    Console.WriteLine("-----");
    Console.WriteLine(result);
}

public class B {
    bool val;
    public B(bool val) { this.val = val; }
    public static bool operator true(B b) { return b.val; }
    public static bool operator false(B b) { return !b.val; }
    public static B operator &(B lhs, B rhs) { 
        Console.WriteLine(lhs.ToString() + " & " + rhs.ToString());
        return new B(lhs.val & rhs.val); 
    }
    public static B operator |(B lhs, B rhs) { 
        Console.WriteLine(lhs.ToString() + " | " + rhs.ToString());
        return new B(lhs.val | rhs.val); 
    }
    public override string ToString() { 
        return val.ToString(); 
    }
}

The output should show that && is evaluated first before ||.

True & False
False | False
-----
False

For extra fun, try it with result = t || t && f and see what happens with short-circuiting.

link|flag
Short-circuiting has nothing to do with expression result. Can we just get over it? – EFraim Jul 29 at 5:49
vote up 2 vote down

We get into unnecessary coding arguments at my work all-the-time.

Well thats your problem. Being the right one is not as important as working together. The pragmatic solution is to use parenthesis to make it explicit.

link|flag
vote up 0 vote down

We get into unnecessary coding arguments at my work all-the-time... If your answer is it doesn't matter, then why is it built that way in the language?

I always use parentheses to enforce precedence. But then that comes from my electrical engineering background. These 2 are different circuits:

result = (A || B) && C; 
result = A || (B && C);

And another reason that I put the parens in myself is that some of the code our company uses approaches 15 years old (we've got some shipping products that started life back then). You'll never know ahead of time if C# version 21.0 will have the same precedence that the current C# has. I'm old enough to remember when a "new" version of Forth came out that swapped the values of true and false: a heck of a lot of code quit working, and a heck of a lot of programmers changed languages. And a previous employer had several apps behave strangely when switching from one allegedly-standards-compliant C++ compiler to a different allegedly-standards-compliant C++ compiler only to find out that they actually didn't have the same rules of precedence.

link|flag
C# 21 will have the same operator precedence as C, certainly – EFraim Jul 29 at 9:47
1  
C# carefully specifies the exact rules for precedence, associativity and order of evaluation. (Remember, those are three different things; don't get them mixed up.) However, C/C++ only specifies the first two -- in C/C++, sequence point order is defined, but subexpression evaluation order is NOT. C# will always have the same rules for all three, but any two C/C++ implementations are permitted to use any evaluation ordering they choose. The problem you ran into when switching C++ compilers was almost certainly NOT a precedence problem; it was an order of evaluation problem. – Eric Lippert Jul 29 at 14:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.