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

时间:2011-08-02 17:23:47

标签: c++ c post-increment unary-operator pre-increment

  

可能重复:
  Undefined Behavior and Sequence Points

请解释以下陈述的行为

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

如何计算?

5 个答案:

答案 0 :(得分:4)

此处的行为未定义。见this question

相关标准报价:

§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.

答案 1 :(得分:1)

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

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

答案 2 :(得分:1)

其他人告诉他们这种行为是不明确的。 输出取决于编译器的实现。

但按照标准,它应该是未定义的。

答案 3 :(得分:0)

如果这是未定义的行为,则无法告诉最终结果。结果取决于实施。

答案 4 :(得分:-1)

未定义的行为,编译器可以按任何顺序自由评估此表达式,因为运算符的优先级相同。考虑使用

(b++)*(++b)

而不是