我不明白这段代码的输出:
long i=5, j=10;
if (++i || ++j) printf("%ld %ld\n", i, j);
else printf("Prog1\n");
输出是 6 和 10。我期望是 6 和 11。为什么 j
没有递增?
请您参考如下方法:
逻辑或运算符 ||
是一个 short circut operator .这意味着如果仅通过查看左操作数即可确定结果,则不会评估右操作数。
C standard 的第 6.5.14 节关于逻辑或运算符声明如下:
4 Unlike the bitwise
|
operator, the||
operator guarantees left-to-right evaluation; if the second operand is evaluated, there is a sequence point between the evaluations of the first and second operands. If the first operand compares unequal to 0, the second operand is not evaluated.
在这种情况下,++i
被评估,结果为 6(具有递增 i
的副作用。逻辑 OR 运算符评估为 1(即 true ) 如果任一操作数不为零。由于左侧不为零,因此不计算右侧,随后 j
不递增。