思维导图
1.
自己封装一个矩形类(Rect),拥有私有属性:宽度(width)、高度(height),
定义公有成员函数:
初始化函数:void init(int w, int h)
更改宽度的函数:set_w(int w)
更改高度的函数:set_h(int h)
输出该矩形的周长和面积函数:void show()
#include <iostream>
using namespace std;
class Rect
{
private:
int width;
int height;
public:
void init(int width,int height)
{
Rect::width=width;
Rect::height=height;
}
void set_w(int width)
{
Rect::width=width;
cout << "已修改宽度为:"<< width << endl;
}
void set_h(int height)
{
Rect::height=height;
cout << "已修改长度为:"<< height << endl;
}
void show()
{
cout << "长方形的面积为:"<< width*height << endl << endl;
}
};
int main()
{
Rect r1;
r1.init(10,20);
r1.show();
r1.set_w(5);
r1.show();
r1.set_h(10);
r1.show();
return 0;
}