纯虚函数


  1. /* 
  2. *Copyright(c) 2016.烟台大学计算机与控制工程学院 
  3. *ALL rights  reserved. 
  4. *文件名称:test.cpp 
  5. *作者:隋宗涛
  6. *完成日期:2016年5月26 
  7. *问题描述:写一个程序,定义抽象基类Shape,由它派生出3个派生类,Circle(圆形)、Rectangle(矩形)、Triangle(三角形)。 
  8.           用如下的main()函数,求出定义的几个几何体的面积和。 
  9. */  
  10. #include <iostream>  
  11. using namespace std;  
  12. //定义抽象基类Shape  
  13. class Shape  
  14. {  
  15. public:  
  16.     virtual double area() const =0;  //纯虚函数  
  17. };  
  18. //定义Circle类  
  19. class Circle:public Shape  
  20. {  
  21. public:  
  22.     Circle(double r):radius(r) {}   //构造函数  
  23.     virtual double area() const  
  24.     {  
  25.         return 3.14159*radius*radius;  
  26.     };  
  27. protected:  
  28.     double radius;  
  29. };  
  30.   
  31. //定义Rectangle类  
  32. class Rectangle:public Shape  
  33. {  
  34. public:  
  35.     Rectangle(double w,double h):width(w),height(h) {}    //构造函数  
  36.     virtual double area() const  
  37.     {  
  38.         return width*height;  
  39.     }  
  40. protected:  
  41.     double width,height;  
  42. };  
  43.   
  44. class Triangle:public Shape  
  45. {  
  46. public:  
  47.     Triangle(double w,double h):width(w),height(h) {}     //构造函数  
  48.     virtual double area() const  
  49.     {  
  50.         return 0.5*width*height;  
  51.     }  
  52. protected:  
  53.     double width,height;  
  54. };  
  55.   
  56. int main()  
  57. {  
  58.     Circle c1(12.6),c2(4.9);//建立Circle类对象c1,c2,参数为圆半径  
  59.     Rectangle r1(4.5,8.4),r2(5.0,2.5);//建立Rectangle类对象r1,r2,参数为矩形长、宽  
  60.     Triangle t1(4.5,8.4),t2(3.4,2.8); //建立Triangle类对象t1,t2,参数为三角形底边长与高  
  61.     Shape *pt[6]={&c1,&c2,&r1,&r2,&t1,&t2}; //定义基类指针数组pt,使它每一个元素指向一个派生类对象  
  62.     double areas=0.0; //areas为总面积  
  63.     for(int i=0; i<6; i++)  
  64.     {  
  65.         areas=areas + pt[i]->area();  
  66.     }  
  67.     cout<<"totol of all areas="<<areas<<endl;   //输出总面积  
  68.     return 0;  
  69. }  
  70. /*
    *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;
    }
    

运行结果:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值