版本1和2间的区别
于2007-07-18 22:36:30修订的的版本1
大小: 670
编辑: czk
备注:
于2007-07-19 07:42:31修订的的版本2
大小: 728
编辑: czk
备注:
删除的内容标记成这样。 加入的内容标记成这样。
行号 1: 行号 1:
## page was renamed from TCPL/A.7.15 Logical OR Operator

A.7.15 Logical OR Operator

  • logical-OR-expression:
    • logical-AND-expression

      logical-OR-expression || logical-AND-expression

The || operator groups left-to-right. It returns 1 if either of its operands compare unequal to zero, and 0 otherwise. Unlike |, || guarantees left-to-right evaluation: the first operand is evaluated, including all side effects; if it is unequal to 0, the value of the expression is 1. Otherwise, the right operand is evaluated, and if it is unequal to 0, the expression's value is 1, otherwise 0.

The operands need not have the same type, but each must have arithmetic type or be a pointer. The result is int.

TCPL/A.07.15_Logical_OR_Operator (2008-02-23 15:37:02由localhost编辑)

ch3n2k.com | Copyright (c) 2004-2020 czk.