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

整理文档很辛苦,赏杯茶钱您下走!

免费阅读已结束,点击下载阅读编辑剩下 ...

阅读已结束,您可以下载文档离线阅读编辑

资源描述

声明一个基类Shape,在此基础上派生出Rectangle和Circle,二者都有GetArea//定义一个Shape基类,在此基础上派生出Rectangle和Circle类,二者都有GetArea()函数计算对象的面积。//使用Rectangle类创建一个派生类Square。并应用相应类的对象测试。#includeiostream.hclassShape{public:Shape(){}~Shape(){}virtualfloatGetArea()const{return-1;}};classCircle:publicShape{public:Circle(floatr):radius(r){}~Circle(){};floatGetArea(){return3.14f*radius*radius;}private:floatradius;};classRectangle:publicShape{public:Rectangle(floatlen,floatwidth):m_len(len),m_width(width){}~Rectangle(){}floatGetArea(){returnm_len*m_width;}floatGetLength(){returnm_len;}floatGetWidth(){returnm_width;}private:floatm_len,m_width;};classSquare:publicRectangle{public:Square(floatlen);~Square(){}};Square::Square(floatlen):Rectangle(len,len){}voidmain(){Shape*sp;sp=newCircle(5);coutTheareaofthecircleissp-GetArea()endl;deletesp;sp=newRectangle(4,6);coutTheareaoftherectangleissp-GetArea()endl;deletesp;sp=newSquare(5);coutTheareaoftheSquareissp-GetArea()endl;deletesp;}

1 / 2
下载文档,编辑使用

©2015-2020 m.777doc.com 三七文档.

备案号:鲁ICP备2024069028号-1 客服联系 QQ:2149211541

×
保存成功