C++ day5

1、在主函数中,分别实例化圆形类对象以及矩形类对象,并测试相关的成员函数

#include 

using namespace std;

class Shape
{
protected:
    double round;          //周长
    double area;           //面积
public:
    //构造函数
    Shape() {cout<<"无参构造"<无参构造
有参构造
Rect::radius = 3
Circle::round = 18.84
Circle::area = 28.26
无参构造
有参构造
Rect::width = 4
Rect::height = 3
Rect::round = 14
Rect::area = 12
析构函数
析构函数
析构函数
析构函数

2、思维导图

你可能感兴趣的:(作业,c++)