单个语句中的多个增量运算符

可能重复:
未定义的行为和序列点

请解释以下陈述的行为

int b=3;
cout<<b++*++b<<endl;

它将如何计算?


这里的行为是未定义的。 看到这个问题

相关标准报价:

§5/4.1 Between the previous and next sequence point a scalar object shall have its stored value modified at most once by the evaluation of an expression.

最常见的顺序点是声明的结尾。

从标准还值得注意的是:

§5.2.2/8 The order of evaluation of arguments is unspecified.


该标准说这是未定义的。 只要符合运算符优先级规则,编译器就可以自由地评估任何顺序的语句。 这导致了UB:

b++ * ++b; // b is modified more than once

他人的行为将会不确定。 输出取决于编译器的实现。

但根据标准,它应该是未定义的。

链接地址: http://www.djcxy.com/p/73241.html

上一篇: Multiple increment operators in single statement

下一篇: Is this undefined behavior in C/C++ (Part 2)