用c++编写一个point类,类中有变量x,y,默认构造函数并重载“--”运算符。

2024-11-22 04:04:00
推荐回答(1个)
回答1:

不知道你的“--”运算符是要干嘛,x和y坐标都减减吗?下面是按照xy都减一编码的。
class CMyPoint
{
public:
//--i
CMyPoint& operator -- ()
{
x--;
y--;
return *this;
}

//i--
CMyPoint operator -- (int)
{
CMyPoint temPt(*this);
--(*this);
return temPt;
}

//private:
int x;
int y;
};