用c++编写一个point类,类中有变量x,y,默认构造函数并重载“--”运算符。
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;
};
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;
};
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询