C++实验题---填空(运算符重载)
#include
using namespace std;
class Point
{
private:
int x,y;
public:
Point(int x=0, int y=0):x(x),y(y){}
Point &operator ++();
friend Point operator ++(Point &p,int);
void print(){cout |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|