gpt4 book ai didi

c++ - 做加法时第一类对象被修改

转载 作者:行者123 更新时间:2023-11-30 02:00:56 25 4
gpt4 key购买 nike

下面的代码给出了加法的正确输出,在执行后更改了第一个对象 bx 值。

class numbers{
public:
int x;
numbers(int i1){
x = i1;
}
numbers operator+ (numbers num){
x = x + num.x;
return(x);
}
};

int main(){
numbers a (2);
numbers b (3);
numbers c (5);
numbers d (7);
cout << a.x << b.x << c.x << d.x << endl; // returns 2357
numbers final (100); //this value won't be shown
final = a+b+c+d;
cout << a.x << b.x << c.x << d.x << endl; // returns 5357
cout << final.x; //returns 17 (2+3+5+7)
system("pause");
}

问题是,这个加法类到底是如何工作的?我的意思是,为什么对象 a 中的 x 被修改了?我虽然只有来自 final 对象的 x 会被修改。

谢谢:)

最佳答案

对 operator+ 的调用就像任何其他成员函数调用一样。 a + b 转换为 a.operator+(b)。所以在这种情况下,行 x = x + num.x; 实际上是分配给 a.x。要实现您想要的效果,您需要用新值填充新数字,即

numbers operator+ (numbers num) const {
return numbers(x + num.x)
}

另请注意 const - 当您犯了那个错误时,它会给您一个编译错误。

关于c++ - 做加法时第一类对象被修改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14674793/

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