gpt4 book ai didi

c++ - 为什么不在operator =中返回const-reference而不是引用?

转载 作者:行者123 更新时间:2023-12-02 10:18:59 26 4
gpt4 key购买 nike

在赋值运算符重载时,为什么我们返回对该对象的引用,为什么它不能返回const-reference?例如,在这种情况下:

MyClass& MyClass::operator=(const MyClass &rhs) {
... // Do the assignment

return *this;
}

为什么我们不能返回常量引用,例如:
const MyClass& MyClass::operator=(const MyClass &rhs) {
... // Do the assignment operation!

return *this; // Return a reference to myself.
}

最佳答案

可以,但是MyClass的用户可能会感到惊讶。

通常,可以引用分配(很少会再次分配分配)。正确地说这有点让人困惑,所以这是它的样子:

int a = 4;
int &r = a = 5;
(a = 6) = 7;

这也不允许调用成员函数来修改该函数的参数,例如:
#include <iostream>

struct C
{
int value;
const C &operator=(int v){value = v; return *this;}
};

void assign_value(C &ref)
{
ref %= 4;
}

int main(void)
{
C test;
assign_value(test = 5);
std::cout << c.value << '\n';
}

关于c++ - 为什么不在operator =中返回const-reference而不是引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61042768/

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