问题描述
rectangletype rectangletype::operator+(const rectangletype& rect) const
{
rectangletype temprect;
temprect.length = length + rect.length;
return temprect;
}
这是主要的:
int main()
{
rectangletype r1(23);
rectangletype r2(27);
rectangletype r3 = r1 + r2;
r3.print();
}
在重载运算符函数中,当我使用 this->length 代替 length 时,它给出了相同的结果,但它的工作方式是否相同?
解决方法
当您覆盖运算符时,this
关键字指的是语句中运算符左侧的对象。在重载函数中,您可以显式使用 this->
,但它是隐含的,因此没有必要。