声明一个基类Shape,在此基础上派生出Rectangle和Circle,二者都有GetArea

更新时间:2023-06-19 21:07:52 阅读: 评论:0

声明一个基类Shape,在此基础上派生出Rectangle和Circle,二者都有GetArea
    //定义一个Shape基类,在此基础上派生出Rectangle和Circle类,二者都有GetArea()函数计算对象的面积。
//使用Rectangle类创建一个派生类Square。并应用相应类的对象测试。
  #include<iostream.h>
class Shape
{
public:
  Shape(){}
  ~Shape(){}
孕妇能不能吃驴肉  virtual float GetArea() const {return -1;}
};
  class Circle :public Shape
{
public:
  Circle(float r) :radius(r){}
  ~Circle(){};
  float GetArea(){return 3.14f*radius*radius;}
车的英语怎么读private:石家庄到天津
  float radius;牡丹芳
};
  class Rectangle :public Shape
{
public:
  Rectangle(float len, float width):m_len(len), m_width(width){}
  ~Rectangle(){}
  float GetArea(){return m_len*m_width;}
  float GetLength(){return m_len;}
孔子的名言
  float GetWidth(){return m_width;}
private:
  float m_len,m_width;
};
  class Square: public Rectangle
{
public:
Square(float len);
~Square(){}
};
中国移动余额查询
Square::Square(float len):Rectangle(len,len)
{}
   
void main()
{如歌的岁月
Shape *sp;
sp=new Circle(5);逛灯会
cout<<"The area of the circle is"<<sp->GetArea()<<endl;
delete sp;
    sp=new Rectangle(4,6);
cout<<"The area of the rectangle is"<<sp->GetArea()<<endl;
delete sp;
sp=new Square(5);
cout<<"The area of the Square is"<<sp->GetArea()<<endl;
delete sp;
}

本文发布于:2023-06-19 21:07:52,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/82/993606.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:对象   基类   应用   创建   相应   驴肉   查询   孕妇
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图