为什么这个表达式在 C# 和 C++ 中产生不同的结果?
我在 C# 和 C++ 中尝试了以下代码:
int a = 5;
int b = (a++)+(++a)+(a--)+(--a);
我注意到 b
的结果在 C# 和 C++ 中是不同的。在 C# 中,我得到了 23。在 C++ 中,我得到了 20。
为什么会这样呢?为什么相同的表达式在 C# 和 C++ 中会产生不同的结果?这是因为两种语言具有不同的运算符优先级规则吗?
I have tried the following code in both C# and C++:
int a = 5;
int b = (a++)+(++a)+(a--)+(--a);
I noticed that the result of b
is different in C# and C++. In C#, I got 23. In C++, I got 20.
Why is this so? Why would an identical expression produce different results in C# and C++? Is this because the two languages have different operator precedence rules?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
C# 从左到右计算它。在 C++ 中,有趣的表达式(例如您的表达式)会调用 未定义的行为,因为您正在更改变量并再次读取它,而没有插入序列点。
这意味着不同的编译器(甚至是具有不同优化设置的同一编译器)可以(并且通常将会)为
(a++)+(++a)+(a --)+(--a)
。C# evaluates this from left to right. In C++, funny expressions such as yours invoke undefined behavior, because you are changing a variable and reading it again without an intervening sequence point.
This means that different compilers (or even the same compiler with different optimization settings) are allowed to (and typically will) produce different results for
(a++)+(++a)+(a--)+(--a)
.该表达式在 C# 中具有明确定义的行为(从左到右求值)
在 C# 中,输出将为 24 (不是 23)
在 C++ 中,表达式调用 未定义行为,因为
a< /code> 在两个序列点之间修改多次。
The expression has well-defined behavior in C# (evaluation from left to right)
In C#, the output would be 24 (not 23)
In C++, the expression invokes Undefined Behaviour because
a
is modified more than once between two sequence points.请在此处查看 C++ 的完整列表。正如 FredOverflow 所说,C# 从左到右计算
Take a look here for the complete list for C++. As FredOverflow says, C# evaluates from left to right
无论如何,我需要查一下这个,所以我想我也会把它发布在这里。
来自 C# 5.0 规范
每种表达式的详细规则在第 7 节中。我不会在这里全部列出,但启发式是从左到右编写的,如代码中所示。例如
Needed to look this up anyway so figured I would post it here too.
From The C# 5.0 Spec
The detailed rules for each kind of expression are in section 7. I won't list them all here, but the heuristic is left to right as written in code. E.g.