c++类与对象题:设计描述平面坐标上的点CPoint类……
设计描述平面坐标上的点CPoint类,该类满足下述要求:•具有x,y坐标信息;•具有带默认形参值的构造函数,参数分别用于初始化x和y坐标信息;...
设计描述平面坐标上的点CPoint类,该类满足下述要求:
•具有x,y坐标信息;
•具有带默认形参值的构造函数,参数分别用于初始化x和y坐标信息;
•具有获取x、y信息的GetX和GetY函数,具有设置x、y信息的SetX和SetY函数; 展开
•具有x,y坐标信息;
•具有带默认形参值的构造函数,参数分别用于初始化x和y坐标信息;
•具有获取x、y信息的GetX和GetY函数,具有设置x、y信息的SetX和SetY函数; 展开
展开全部
class CPoint
{
public:
CPoint( int x, int y )
{
this->x = x;
this->y = y;
}
int GetX() { return x; }
int GetY() { return y; }
void SetX( int x ) { this->x = x; }
void SetY( int y ) { this->y = y; }
private:
int x;
int y;
}
{
public:
CPoint( int x, int y )
{
this->x = x;
this->y = y;
}
int GetX() { return x; }
int GetY() { return y; }
void SetX( int x ) { this->x = x; }
void SetY( int y ) { this->y = y; }
private:
int x;
int y;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
class CPoint{
int x;
int y;public CPoint(int xx,int yy){
x=xx;
y=yy;
} public int getX(){
return x;
} public int getX(){
return x;
} public void setY(int yy){
y=yy;
}
public void setX(int xx){
x=xx;
}
}
int x;
int y;public CPoint(int xx,int yy){
x=xx;
y=yy;
} public int getX(){
return x;
} public int getX(){
return x;
} public void setY(int yy){
y=yy;
}
public void setX(int xx){
x=xx;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询