Consider this

Class* p = NULL;
if( p != NULL && p->Method() == OK ){

  // stuff
}

On all compilers I've worked with, this is quite safe. I.e. the first part of the boolean expression will evaluate to false, and the call to Method() will thus not be attempted since evaluating the second part is redundant.

Is this because most compilers will optimize away the evaluation of the second part, or is it a dictated behavior from the C/C++ standards?

link|improve this question

Just adding a quick note here, but compilers would not optimize anythin away if it wasn't allowed by the standard. A compiler's job is to produce code that behaves as if the standard had been followed. So a compiler must never optimize away code that could affect the behavior of the program. – jalf May 12 '09 at 13:33
1  
Well, I've never seen a person vote to close his own question as a dup before. I think you deserve a badge for that! – Paul Tomblin May 12 '09 at 13:37
@Paul: Cheers, but this is also a special case since I didn't know what to search for from the start. – sharkin May 12 '09 at 14:56
Actually, asking a duplicate question because you didn't know the correct term to search for isn't that unusual. – Paul Tomblin May 12 '09 at 15:22
feedback

closed as exact duplicate by sharkin, starblue, Loki Astari, Mykola Golubyev, sharptooth May 12 '09 at 13:21

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

6 Answers

up vote 3 down vote accepted

This is called boolean short circuiting and is defined into many languages. Here is a wikipedia article that describes which languages have this feature.

Now that you know the correct name for the feature, there are other SO articles about it as well.

link|improve this answer
feedback

Expression short cutting is guaranteed by the standard.

link|improve this answer
feedback

ะก++ Standard 1998
Section 5.14

The && operator groups left-to-right. The operands are both implicitly converted to type bool(clause 4). The result is true if both operands are true and false otherwise. Unlike &, && guarantees left-to-right evaluation: the second operand is not evaluated if the first operand is false.

link|improve this answer
Which standard? We've got C and C++ standards that guarantee that, not to mention numerous other languages, and two versions of the C standard (not that something this basic is likely to have changed in position). – David Thornley May 12 '09 at 13:34
feedback

This is a feature called short circuiting. This behavior is guaranteed by the C++ standard. I do not believe it is an optimization so to speak but it's much more of simply a language feature.

link|improve this answer
feedback

I haven't seen it mentioned yet, so:

Short-circuiting is guaranteed by C++ except when the && or || operator being invoked is overloaded. But don't do that, because it's too confusing.

link|improve this answer
feedback

It's not just optimization, it's useful to let you be more concise.

As your example shows, it lets you write a "safe" dereferencing statement in one line. Otherwise, you have to do something like:

if (p != null) {
    if (p.getValue() == 3) {
        // do stuff
    }
}

Seems trivial, but try coding in a language that doesn't have it (e.g. VB6) and you begin to sorely miss it.

It's in the language standards as other answers mention, but only because something like this needs to be clearly specified. That it can possibly compile down to optimized code is a side-effect; these days, a decent C or C++ compiler would compile the one-line or two-line statements equivilently

link|improve this answer
feedback

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