关于重载操作符“=”,最后要return *this
MyClass &MyClass::operator=(const MyClass &rhs){
if (this != &rhs)
{
delete ptr;
ptr = new int;
*ptr = *rhs.ptr;
}
else
cout << "赋值两边为同一个对象,不做处理!" << endl;
return *this;
}
最后一行为什么不是return *ptr,而是return *this 首先,类重载还是相当于函数调用,就如你这里的。
MyClass A,B;
A = B;
相当于:A = A.operator=(B);这样的调用,重载函数的返回值你这里也写了为MyClass &;
那么返回值的类型就是MyClass,而prt只不过是这个类下的一个数据变量而已。
这个是类的重载,如果你有不清楚可以看《C++ Primer Plus》 第六版,P381关于这个有详细的介绍。 你要搞清楚这个运算符重载的作用干什么,然后再问应该返回什么,这么想想就OK了
页:
[1]