- /*
- *Copyright(c) 2016.烟台大学计算机与控制工程学院
- *ALL rights reserved.
- *文件名称:test.cpp
- *作者:隋宗涛
- *完成日期:2016年5月26
- *问题描述:写一个程序,定义抽象基类Shape,由它派生出3个派生类,Circle(圆形)、Rectangle(矩形)、Triangle(三角形)。
- 用如下的main()函数,求出定义的几个几何体的面积和。
- */
- #include <iostream>
- using namespace std;
- //定义抽象基类Shape
- class Shape
- {
- public:
- virtual double area() const =0; //纯虚函数
- };
- //定义Circle类
- class Circle:public Shape
- {
- public:
- Circle(double r):radius(r) {} //构造函数
- virtual double area() const
- {
- return 3.14159*radius*radius;
- };
- protected:
- double radius;
- };
- //定义Rectangle类
- class Rectangle:public Shape
- {
- public:
- Rectangle(double w,double h):width(w),height(h) {} //构造函数
- virtual double area() const
- {
- return width*height;
- }
- protected:
- double width,height;
- };
- class Triangle:public Shape
- {
- public:
- Triangle(double w,double h):width(w),height(h) {} //构造函数
- virtual double area() const
- {
- return 0.5*width*height;
- }
- protected:
- double width,height;
- };
- int main()
- {
- Circle c1(12.6),c2(4.9);//建立Circle类对象c1,c2,参数为圆半径
- Rectangle r1(4.5,8.4),r2(5.0,2.5);//建立Rectangle类对象r1,r2,参数为矩形长、宽
- Triangle t1(4.5,8.4),t2(3.4,2.8); //建立Triangle类对象t1,t2,参数为三角形底边长与高
- Shape *pt[6]={&c1,&c2,&r1,&r2,&t1,&t2}; //定义基类指针数组pt,使它每一个元素指向一个派生类对象
- double areas=0.0; //areas为总面积
- for(int i=0; i<6; i++)
- {
- areas=areas + pt[i]->area();
- }
- cout<<"totol of all areas="<<areas<<endl; //输出总面积
- return 0;
- }
/* *Copyright(c) 2016.烟台大学计算机与控制工程学院 *ALL rights reserved. *文件名称:test.cpp *作者:杨驰 *完成日期:2016年5月26 *问题描述:写一个程序,定义抽象基类Shape,由它派生出3个派生类,Circle(圆形)、Rectangle(矩形)、Triangle(三角形)。 用如下的main()函数,求出定义的几个几何体的面积和。 */ #include <iostream> using namespace std; //定义抽象基类Shape class Shape { public: virtual double area() const =0; //纯虚函数 }; //定义Circle类 class Circle:public Shape { public: Circle(double r):radius(r) {} //构造函数 virtual double area() const { return 3.14159*radius*radius; }; protected: double radius; }; //定义Rectangle类 class Rectangle:public Shape { public: Rectangle(double w,double h):width(w),height(h) {} //构造函数 virtual double area() const { return width*height; } protected: double width,height; }; class Triangle:public Shape { public: Triangle(double w,double h):width(w),height(h) {} //构造函数 virtual double area() const { return 0.5*width*height; } protected: double width,height; }; int main() { Circle c1(12.6),c2(4.9);//建立Circle类对象c1,c2,参数为圆半径 Rectangle r1(4.5,8.4),r2(5.0,2.5);//建立Rectangle类对象r1,r2,参数为矩形长、宽 Triangle t1(4.5,8.4),t2(3.4,2.8); //建立Triangle类对象t1,t2,参数为三角形底边长与高 Shape *pt[6]={&c1,&c2,&r1,&r2,&t1,&t2}; //定义基类指针数组pt,使它每一个元素指向一个派生类对象 double areas=0.0; //areas为总面积 for(int i=0; i<6; i++) { areas=areas + pt[i]->area(); } cout<<"totol of all areas="<<areas<<endl; //输出总面积 return 0; }
运行结果: