原帖由 小水平 于 2005-10-31 11:17 发表
运算时是按优先级高低顺序运算,但&&和||运算符不按此规则吗?:
如:a||b&&c;
原帖由 trueno 于 2005-10-31 11:34 发表
对于运算符:||和&&
condition = condition1 || condition2;
如果condition1为1,则condition2将不被执行,而被忽略
同理
condition = condition1 && condition2;
如果condition1为0,则c ...
原帖由 小水平 于 2005-10-31 12:19 发表
楼上的完全错误,a||b&&c,应该是a||(b&&c),而||运算规定的如同3楼所说,所以……
原帖由 whyglinux 于 2005-10-31 21:11 发表
上面 trueno 说的是正确的,不知道为什么 flw 有不同意见啊?
[#3] The grouping of operators and operands is indicated by |
the syntax.59) Except as specified later (for the function- |
call (), &&, ||, ?:, and comma operators), the order of
evaluation of subexpressions and the order in which side
effects take place are both unspecified.
.....
59)The syntax specifies the precedence of operators in the
evaluation of an expression, which is the same as the
order of the major subclauses of this subclause, highest
precedence first. Thus, for example, the expressions
allowed as the operands of the binary + operator (6.5.6) |
are those expressions defined in 6.5.1 through 6.5.6.
The exceptions are cast expressions (6.5.4) as operands
of unary operators (6.5.3), and an operand contained
between any of the following pairs of operators: grouping
parentheses () (6.5.1), subscripting brackets []
(6.5.2.1), function-call parentheses () (6.5.2.2), and
the conditional operator ?: (6.5.15).
Within each major subclause, the operators have the same
precedence. Left- or right-associativity is indicated in
each subclause by the syntax for the expressions
discussed therein.
[#3] The grouping of operators and operands is indicated by |
the syntax.59) Except as specified later (for the function- |
call (), &&, ||, ?:, and comma operators), the order of
evaluation of subexpressions and the order in which side
effects take place are both unspecified.
Except as specified later (xxx), the order of
evaluation of subexpressions and the order in which side
effects take place are both unspecified.
原帖由 win_hate 于 2005-11-1 10:40 发表
简化为:
即除非特别说明的,其求值次序是不确定的。而要特别说明的就是括号中的 xxx,其中包括 || 和 &&.
6.5.13 Logical AND operator
Syntax
[#1]
logical-AND-expr:
inclusive-OR-expr
logical-AND-expr && inclusive-OR-expr
Constraints
[#2] Each of the operands shall have scalar type.
Semantics
[#3] The && operator shall yield 1 if both of its operands
compare unequal to 0; otherwise, it yields 0. The result
has type int.
[#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.
6.5.14 Logical OR operator
Syntax
[#1]
logical-OR-expr:
logical-AND-expr
logical-OR-expr || logical-AND-expr
Constraints
[#2] Each of the operands shall have scalar type.
Semantics
[#3] The || operator shall yield 1 if either of its operands
compare unequal to 0; otherwise, it yields 0. The result
has type int.
[#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.
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |