Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Safety concerns about short circuit evaluation

What does the standard say about evaluating && expressions - does it guarantee that evaluation of parameters will stop at the first false?

E.g.:

Foo* p;
//....
if ( p && p->f() )
{
    //do something
}

is the f() guaranteed not to be called if p == NULL?

Also, is the order of evaluation guaranteed to be the order of appearence in the clause?

Might the optimizer change something like:

int x;
Foo* p;
//...
if ( p->doSomethingReallyExpensive() && x == 3 )
{
    //....
}

to a form where it evaluates x==3 first? Or will it always execute the really expensive function first?

I know that on most compilers (probably all) evaluation stops after the first false is encountered, but what does the standard say about it?

share|improve this question

marked as duplicate by Matteo Italia, Lightness Races in Orbit, Foo Bah, flolo, GManNickG Oct 1 '11 at 17:37

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

4 Answers

up vote 3 down vote accepted

What does the standard say about evaluating && expressions - does it guarantee that evaluation of parameters will stop at the first false?

Yes. That is called short-circuiting.

Also, is the order of evaluation guaranteed to be the order of appearence in the clause?

Yes. From left to right. The operand before which the expression short-circuited doesn't get evaluated.

int a = 0;
int b = 10;
if ( a != 0 && (b=100)) {}

cout << b << endl; //prints 10, not 100

In fact, the above two points are the keypoint in my solution here:

share|improve this answer

In the ANSI C standard 3.3.13:

Unlike the bitwise binary & operator, the && operator guarantees
left-to-right evaluation; there is a sequence point after the
evaluation of the first operand.  If the first operand compares equal
to 0, the second operand is not evaluated.

There is an equivalent statement in the C++ standard

share|improve this answer

&& (and ||) establish sequence points. So the expression on the left-hand side will get evaluated before the right-hand side. Also, yes, if the left-hand side is false/true (for &&/||), the right-hand side is not evaluated.

share|improve this answer

What does the standard say about evaluating && expressions - does it guarantee that evaluation of parameters will stop at the first false?

Also, is the order of evaluation guaranteed to be the order of appearence in the clause?

5.14/1. Unlike &, && guarantees left-to-right evaluation: the second operand is not evaluated if the first operand is false.

This only works for the standard && operator, user defined overloads of operator && don't have this guarantee, they behave like regular function call semantics.

Might the optimizer change something like: if ( p->doSomethingReallyExpensive() && x == 3 ) to a form where it evaluates x==3 first?

An optimizer may decide to evaluate x == 3 first since it is an expression with no side-effects associated if x is not modified by p->doSomethingReallyExpensive(), or even evaluate it after p->doSomethingReallyExpensive() already returned false. However, the visible behavior is guaranteed to be the previously specified: Left to right evaluation and short-circuit. That means that while x == 3 may be evaluated first and return false the implementation still has to evaluate p->doSomethingReallyExpensive().

share|improve this answer

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