第13周项目3-形状类族中的纯虚函数

来源:互联网 发布:360软件小助手独立 编辑:程序博客网 时间:2024/05/16 01:50

问题及代码:

/* *copyright (t) 2016,烟台大学计算机学院 *All rights reserved. *文件名称:test.cpp *作者:张晴晴 *完成日期:2016年6月10日 *版本号:v1.0 *问题描述: *输入描述: *程序输出: */#include <iostream>using namespace std;//定义抽象基类Shapeclass Shape{public:    virtual double area() const =0;  //纯虚函数,写const是因为本函数只求值不改变数据成员,用const保护一下,与虚函数无关};//定义Circle类class Circle:public Shape{public:    Circle(double r):radius(r) {}   //构造函数    virtual double area() const  //基类中的同名纯虚函数用了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   //基类中的同名纯虚函数用了const,这儿也必须写,以示同一函数,否则认为没有实现纯虚函数,仍为抽象类,不能定义对象——类的实例    {        return width*height;    //定义虚函数    }protected:    double width;    double 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;    double 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;}

运行结果:



学习心得:

需要注意的就是用const去保护,在他派生类的操作中也应该注意。

基类中的同名纯虚函数用了const,派生类中也必须写,以示同一函数,否则认为没有实现纯虚函数,仍为抽象类,不能定义对象。



0 0
原创粉丝点击