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


    写一个程序,定义抽象基类Shape,由它派生出3个派生类,Circle(圆形)、Rectangle(矩形)、Triangle(三角形)。用如下的main()函数,求出定义的几个几何体的面积和。

    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) 2015,烟台大学计算机学院
    * All right reserved.
    * 作者:邵帅
    * 文件:Demo.cpp
    * 完成时间:2015年06月07日
    * 版本号:v1.0
    */
    #include <iostream>
    #include <string>
    using namespace std;
    class Shape
    {
    public:
        virtual double area()=0;
    };
    class Circle:public Shape
    {
    private:
        double radius;
    public:
        Circle(double r):radius(r){}
        virtual double area()
        {
            return (3.14*radius*radius);
        }
    };
    class Rectangle:public Shape
    {
    private:
        double leight;
        double height;
    public:
        Rectangle(double l,double h):leight(l),height(h){}
        virtual double area()
        {
            return (leight*height);
        }
    };
    class Triangle:public Shape
    {
    private:
        double underline;
        double height;
    public:
        Triangle(double u,double h):underline(u),height(h){}
        virtual double area()
        {
            return (underline*height*1/2);
        }
    };
    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;
    }
    

    运行结果:



    @ Mayuko

  • 相关阅读:
    014-More than one file was found with OS independent path 'META-INF/DEPENDENCIES'
    013-一个Activity怎么调用另一个Activity的方法返回数据(转)
    012-关于EditText中的getText()方法的返回值类型以及string的转换问题(转)
    011-frament中不能调用getSystemService()方法
    010-Android开发解决控件超出屏幕,不能正常显示的问题
    009-在Fragment中实现Activity跳转功能
    Oracle分区表
    Oracle构造列
    Oracle集合
    Oracle多对多、维表
  • 原文地址:https://www.cnblogs.com/mayuko/p/4567471.html
Copyright © 2020-2023  润新知