cout 的 << 是如何实现的?运算符在运算符优先级方面的工作?

发布于 2024-12-24 03:08:31 字数 619 浏览 0 评论 0 原文

可能的重复:
意外的评估顺序(编译器错误?)

我无法预测输出对于这个程序:

#include<iostream>
using namespace std;

int *p(int *a)
{
    (*a)++;
    return a;
}
int main()
{
    int i=0;

    cout<<i++<<" "<<(*p(&i))++<<" "<<i++<<" "<<i<<endl;
    return 0;
}

在vs2008中编译时,它输出3 2 0 4。有人能解释为什么它不是 0 2 3 4 吗?

注意:如果没有对 p 的函数调用,它会很好地工作。

提前致谢!

Possible Duplicate:
Unexpected order of evaluation (compiler bug?)

I couldn't predict the output for this program :

#include<iostream>
using namespace std;

int *p(int *a)
{
    (*a)++;
    return a;
}
int main()
{
    int i=0;

    cout<<i++<<" "<<(*p(&i))++<<" "<<i++<<" "<<i<<endl;
    return 0;
}

When compiled in vs2008, it outputs 3 2 0 4. Can anybody explain why it's not 0 2 3 4 ?

Note: It works great if there is no function call to p.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半衬遮猫 2024-12-31 03:08:31

未定义的行为。什么都可以做。

请参阅此答案以获得很好的解释。

Undefined behaviour. Could do anything.

See this answer for a good explanation.

人生百味 2024-12-31 03:08:31

重点不在于 cout 的优先级,而在于 ++ 运算符。
该运算符的副作用可能发生在两个序列点之间的任何时间,这意味着在本例中,发生在语句中的任何位置。正如 @oli-charlesworth 所说,它发生的确切顺序是未定义的。
cout 的优先级是从左到右,因此首先打印最左边的。但每个数字的值取决于 ++ 的行为。

The point isn't cout's precedence, but the ++ operator.
This operator's side effect can take place any time between two sequence points, which means anywhere in the statemenet, in this case. The exact order it happens is, as @oli-charlesworth says, undefined.
cout's precedence is left to right, so the leftmost is printed first. But the value of each number depends on the behavior of ++.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文