gpt4 book ai didi

c++ - C++中运算符的返回类型是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:28:35 27 4
gpt4 key购买 nike

我在看C++ Primer,在重载操作一章,作者举了一个例子:

// member binary operator: left-hand operand bound to implicit this pointer
Sales_item& Sales_item::operator+=(const Sales_item&);
// nonmember binary operator: must declare a parameter for each operand
Sales_item operator+(const Sales_item&, const Sales_item&);

然后,作者解释道:

This difference matches the return types of these operators when applied to arithmetic types: Addition yields an rvalue and compound assignment returns a reference to the left-hand operand.

我不太确定“复合赋值返回对左侧操作数的引用”。任何人都可以详细说明这一点以及相关的事情吗?

最佳答案

这意味着你可以做类似下面的事情

a = 1; 
(a += 1) += 1;

结果将是 a == 3。这是因为最左边的 += 调用修改了 a 然后 返回对它的引用。然后下一个 += 对 a 的引用进行操作,并再次向其添加一个数字。

另一方面,普通 + 运算符返回结果的拷贝,而不是对其中一个参数的引用。所以这意味着像 a + a = 3; 这样的表达式是非法的。

关于c++ - C++中运算符的返回类型是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10441721/

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