不知道你的“--”运算符是要干嘛,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;
};