-
图形类( shape )
- 纯虚函数:
void PrintArea()
,用于输出当前图形的面积。
- 纯虚函数:
-
矩形类( Rectangle )
-
继承 Shape 类,并且重写 PrintArea 函数,输出矩形的面积,输出格式为:
矩形面积 = width*height
。 -
带参构造函数:
Rectangle(float w,float h)
,这两个参数分别赋值给成员变量的宽、高。
-
-
圆形类( Circle )
-
继承 Shape 类,并且重写 PrintArea 函数,输出圆形的面积,输出格式为:
圆形面积 = radio * radio * 3.14
。 -
带参构造函数:
Circle(float r)
,参数 r 代表圆的半径。#include <iostream> using namespace std; /********* Begin *********/ class Shape { //基类的声明 public: virtual void PrintArea() = 0; }; class Rectangle : public Shape { //矩形类的声明 public: void PrintArea(); Rectangle(float w, float h); float wid , hei; }; //矩形类的定义 void Rectangle::PrintArea() { cout << "矩形面积 = " << hei * wid << endl; } Rectangle::Rectangle(float w, float h) { wid = w; hei = h; } class Circle : public Shape { //圆形类的声明 public: void PrintArea(); Circle(float r); float rad; }; //圆形类的定义 void Circle::PrintArea() { cout << "圆形面积 = " << rad * rad * 3.14 << endl; } Circle::Circle(float r) { rad = r; } /********* End *********/
-
12-04
620

08-30
219
