您的位置:首页 > 其它

第十三周项目二 形状类族中的纯虚函数

2015-06-10 08:34 267 查看
/*
*Copyright (c)2014,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:test.cpp
*作    者:徐洪祥
*完成日期:2015年6月10日
*版 本 号:v1.0
*
* 问题描述:写一个程序,定义抽象基类Shape,由它派生出三个派生类,
CIrcle(圆形)、Rectangle(矩形)、Triangle(三角形),
求出定义的几个几何体的面积和。
* 输入描述:
* 程序输出:
*/
#include <iostream>
using namespace std;
class Shape
{
public:
virtual double area()const =0;
};
class Circle:public Shape
{
public:
Circle(double r):radius(r) {}
virtual double area()const
{
return 3.1415926*radius*radius;
}
protected:
double radius;
};
class Rectangle:public Shape
{
public:
Rectangle(double h,double w):height(h),width(w) {}
virtual double area()const
{
return height*width;
}
protected:
double height;
double width;
};
class Triangle:public Shape
{
public:
Triangle(double h,double w):height(h),width(w) {}
virtual double area()const
{
return 1/2*height*width;
}
protected:
double height;
double width;
};
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;
}


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: