C语言问题虚函数的问题

/*定义一个Shape,在此基础上派生出Rectangle和Circle,二者都有getArea()函数计算对象的面积。使用Rectangle类创建一个派生类Square... /*定义一个Shape,在此基础上派生出Rectangle和Circle,二者都有getArea()函数计算对象的面积。使用Rectangle类创建一个派生类Square。*/

#include<iostream>
using namespace std;

class Shape
{
public:
Shape(){}
~Shape(){}
virtual float getArea(){return -1;}
};

class Circle:public Shape
{
public:
Circle(float radius):itsRadius(radius){}
~Circle(){}
float getArea(){return 3.14*itsRadius*itsRadius;}
private:
float itsRadius;
};

class Rectangle:public Shape
{
public:
Rectangle(float len,float width):itsLength(len),itsWidth(width){};
~Rectangle(){};
virtual float getArea(){return itsLength*itsWidth;}
virtual float getLength(){return itsLength;}
virtual float getWidth(){return itsWidth;}
private:
float itsLength;
float itsWidth;
};

class Square:public Rectangle
{
public:
Square(float len);
~Square(){};
};

Square::Square(float len):
Rectangle(len,len)
{
}

int 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 Rctangle is"<<sp->getArea()<<endl;
delete sp;
sp=new Square(5);
cout<<"The area of the Square is"<<sp->getArea()<<endl;
delete sp;
return 0;
}

里面的虚函数都是什么用处?
这段代码可以简便一点吗?
展开
 我来答
mafangsan
2013-12-14 · TA获得超过1.2万个赞
知道大有可为答主
回答量:1万
采纳率:71%
帮助的人:2577万
展开全部
虚函数的作用是可以通过基类的指针或者引用调到派生类的这个函数。

你上面的代码是演示虚函数的作用,不用去简便他。

你可以把这个程序中的virtual全部删除掉,然后再运行程序,观察一下两次结果的不一样,估计你就能理解虚函数的作用了。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式