c++程序,急~实在不会啊...高手帮忙,好的话加分!!!
设计一个类CRectangle,除了有相关的数据成员外,该类还要求包含下述成员函数:矩形从一个位置移动到另一个位置的Move()函数;改变矩形大小的Size()函数;返回...
设计一个类CRectangle,除了有相关的数据成员外,该类还要求包含下述成员函数:矩形从一个位置移动到另一个位置的Move()函数;改变矩形大小的Size()函数;返回矩形左上角的坐标值的Where()函数;计算矩形面积的Area()函数。
请问为什么1楼的没有private?我初学者,不太懂,好像有的吧? 展开
请问为什么1楼的没有private?我初学者,不太懂,好像有的吧? 展开
1个回答
展开全部
class CRectangle
{
public:
CRectangle()
: x(0)
, y(0)
, w(0)
, h(0)
{
}
virtual ~CRectangle()
{
}
void Move(int ax, int ay)
{
x = ax;
y = ay;
}
void Size(int aw, int ah)
{
w = aw;
h = ah;
}
void Where(int& ax, int& ay)
{
ax = x;
ay = y;
}
int Area()
{
return w * h;
}
protected:
int x, y;
int w, h;
};
{
public:
CRectangle()
: x(0)
, y(0)
, w(0)
, h(0)
{
}
virtual ~CRectangle()
{
}
void Move(int ax, int ay)
{
x = ax;
y = ay;
}
void Size(int aw, int ah)
{
w = aw;
h = ah;
}
void Where(int& ax, int& ay)
{
ax = x;
ay = y;
}
int Area()
{
return w * h;
}
protected:
int x, y;
int w, h;
};
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询