Is short-circuiting logical operators mandated? And evaluation order?

前端 未结 7 2464
广开言路
广开言路 2020-11-21 04:11

Does the ANSI standard mandate the logical operators to be short-circuited, in either C or C++?

I\'m confused for I recall the K&R book saying your code

相关标签:
7条回答
  • 2020-11-21 04:42

    Yes, it mandates that (both evaluation order and short circuit). In your example if all functions return true, the order of the calls are strictly from functionA then functionB and then functionC. Used for this like

    if(ptr && ptr->value) { 
        ...
    }
    

    Same for the comma operator:

    // calls a, then b and evaluates to the value returned by b
    // which is used to initialize c
    int c = (a(), b()); 
    

    One says between the left and right operand of &&, ||, , and between the first and second/third operand of ?: (conditional operator) is a "sequence point". Any side effects are evaluated completely before that point. So, this is safe:

    int a = 0;
    int b = (a++, a); // b initialized with 1, and a is 1
    

    Note that the comma operator is not to be confused with the syntactical comma used to separate things:

    // order of calls to a and b is unspecified!
    function(a(), b());
    

    The C++ Standard says in 5.14/1:

    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.

    And in 5.15/1:

    The || operator groups left-to-right. The operands are both implicitly converted to bool (clause 4). It returns true if either of its operands is true, and false otherwise. Unlike |, || guarantees left-to-right evaluation; moreover, the second operand is not evaluated if the first operand evaluates to true.

    It says for both next to those:

    The result is a bool. All side effects of the first expression except for destruction of temporaries (12.2) happen before the second expression is evaluated.

    In addition to that, 1.9/18 says

    In the evaluation of each of the expressions

    • a && b
    • a || b
    • a ? b : C
    • a , b

    using the built-in meaning of the operators in these expressions (5.14, 5.15, 5.16, 5.18), there is a sequence point after the evaluation of the first expression.

    0 讨论(0)
  • 2020-11-21 04:49

    Short circuit evaluation, and order of evaluation, is a mandated semantic standard in both C and C++.

    If it wasn't, code like this would not be a common idiom

       char* pChar = 0;
       // some actions which may or may not set pChar to something
       if ((pChar != 0) && (*pChar != '\0')) {
          // do something useful
    
       }
    

    Section 6.5.13 Logical AND operator of the C99 specification (PDF link) says

    (4). 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.

    Similarly, section 6.5.14 Logical OR operator says

    (4) Unlike the bitwise | 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 unequal to 0, the second operand is not evaluated.

    Similar wording can be found in the C++ standards, check section 5.14 in this draft copy. As checkers notes in another answer, if you override && or ||, then both operands must be evaluated as it becomes a regular function call.

    0 讨论(0)
  • 2020-11-21 04:50

    Your question comes down to C++ operator precedence and associativity. Basically, in expressions with multiple operators and no parentheses, the compiler constructs the expression tree by following these rules.

    For precedence, when you have something like A op1 B op2 C, you could group things as either (A op1 B) op2 C or A op1 (B op2 C). If op1 has higher precedence than op2, you'll get the first expression. Otherwise, you'll get the second one.

    For associativity, when you have something like A op B op C, you could again group thins as (A op B) op C or A op (B op C). If op has left associativity, we end up with the first expression. If it has right associativity, we end up with the second one. This also works for operators at the same precedence level.

    In this particular case, && has higher precedence than ||, so the expression will be evaluated as (a != "" && it == seqMap.end()) || isEven.

    The order itself is "left-to-right" on the expression-tree form. So we'll first evaluate a != "" && it == seqMap.end(). If it's true the whole expression is true, otherwise we go to isEven. The procedure repeats itself recursively inside the left-subexpression of course.


    Interesting tidbits, but the concept of precedence has its roots in mathematic notation. The same thing happens in a*b + c, where * has higher precedence than +.

    Even more interesting/obscure, for a unparenthasiszed expression A1 op1 A2 op2 ... opn-1 An, where all operators have the same precedence, the number of binary expression trees we could form is given by the so called Catalan numbers. For large n, these grow extremely fast. d

    0 讨论(0)
  • 2020-11-21 04:51

    Yes, short-circuiting and evaluation order are required for operators || and && in both C and C++ standards.

    C++ standard says (there should be an equivalent clause in the C standard):

    1.9.18

    In the evaluation of the following expressions

    a && b
    a || b
    a ? b : c
    a , b
    

    using the built-in meaning of the operators in these expressions, there is a sequence point after the evaluation of the first expression (12).

    In C++ there is an extra trap: short-circuiting does NOT apply to types that overload operators || and &&.

    Footnote 12: The operators indicated in this paragraph are the built-in operators, as described in clause 5. When one of these operators is overloaded (clause 13) in a valid context, thus designating a user-defined operator function, the expression designates a function invocation, and the operands form an argument list, without an implied sequence point between them.

    It is usually not recommended to overload these operators in C++ unless you have a very specific requirement. You can do it, but it may break expected behaviour in other people's code, especially if these operators are used indirectly via instantiating templates with the type overloading these operators.

    0 讨论(0)
  • 2020-11-21 04:54

    Be very very careful.

    For fundamental types these are shortcut operators.

    But if you define these operators for your own class or enumeration types they are not shortcut. Because of this semantic difference in their usage under these different circumstances it is recommended that you do not define these operators.

    For the operator && and operator || for fundamental types the evaluation order is left to right (otherwise short cutting would be hard :-) But for overloaded operators that you define, these are basically syntactic sugar to defining a method and thus the order of evaluation of the parameters is undefined.

    0 讨论(0)
  • 2020-11-21 05:00

    If you trust Wikipedia:

    [&& and ||] are semantically distinct from the bit-wise operators & and | because they will never evaluate the right operand if the result can be determined from the left alone

    C (programming language)

    0 讨论(0)
提交回复
热议问题