gpt4 book ai didi

c++ - 在这种情况下,从左到右的关联性是什么意思?

转载 作者:太空狗 更新时间:2023-10-29 20:13:23 25 4
gpt4 key购买 nike

我在 C++ Primer 中阅读了有关 C++ 中的 << 运算符的信息。
其中,有一些关于<<运算符

的行

cout << "Some string" evaluates to a left hand ostream operator that is the result of the expression is cout object itself.(We say that operator associates left to right) .

如果有人能解释上述几行的含义,那就太好了。

最佳答案

意思是

cout << a << b

相同
(cout << a) << b

不是

cout << (a << b)

澄清一下:cout << a部分输出a,然后返回cout,所以(cout << a)的结果可以用作 << b 的左侧.左结合性仅表示如果括号可以使表达式表示其他含义,则假设括号是从左到右设置的。

关于c++ - 在这种情况下,从左到右的关联性是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21650727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com