gpt4 book ai didi

c++ - 重载 == 运算符 C++

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

我重载了 + 运算符,但现在我想重载 2 个长度(可能相同也可能不同)的 == 运算符并返回各自的结果。我该怎么做?我需要为 == 使用 bool 吗?

//我为重载 + 运算符做了什么,以从 2 个不同的长度中获得新的长度

Length operator+ (const Length& lengthA){       

int newlengthMin = min, newlengthMax = max;

if (lengthA.min < min)
newLengthMin = lengthA.min;
if (lengthA.max > max)
newLengthMax = lengthA.max;

return Length(newLengthMin, newLengthMax);
}

最佳答案

对于简单的情况,使用 bool operator==(const Length& other) const。请注意 const - 比较运算符不需要修改其操作数。您的 operator+ 也不应该!

如果您想利用双方的隐式转换,请在全局范围内声明比较运算符:

bool operator==(const Length& a, const Length& b) {...}

关于c++ - 重载 == 运算符 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5544318/

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