虚函数、纯虚函数详解

1.首先:强调一个概念
定义一个函数为虚函数,不代表函数为不被实现的函数。定义他为虚函数是为了允许用基类的指针来调用子类的这个函数。
定义一个函数为纯虚函数,才代表函数没有被实现。定义他是为了实现一个接口,起到一个规范的作用,规范继承这个。类的程序员必须实现这个函数。

2.关于实例化一个类:
有纯虚函数的类是不可能生成类对象的,如果没有纯虚函数则可以。比如:
classCA
{
public:
virtualvoidfun()=0;//说明fun函数为纯虚函数
virtualvoidfun1();
};

classCB
{
public:
virtualvoidfun();
virtualvoidfun1();
};

//CA,CB类的实现
...

voidmain()
{
CAa;//不允许,因为类CA中有纯虚函数
CBb;//可以,因为类CB中没有纯虚函数
...
}

3.虚函数在多态中间的使用:
多态一般就是通过指向基类的指针来实现的。

4.有一点你必须明白,就是用父类的指针在运行时刻来调用子类:
例如,有个函数是这样的:
voidanimal::fun1(animal*maybedog_maybehorse)
{
maybedog_maybehorse->born();
}
参数maybedog_maybehorse在编译时刻并不知道传进来的是dog类还是horse类,所以就把它设定为animal类,具体到运行时决定了才决定用那个函数。也就是说用父类指针通过虚函数来决定运行时刻到底是谁而指向谁的函数。

5.用虚函数
#include<iostream.h>

classanimal
{
public:
animal();
~animal();
voidfun1(animal*maybedog_maybehorse);
virtualvoidborn();
};

voidanimal::fun1(animal*maybedog_maybehorse)
{
maybedog_maybehorse->born();
}

animal::animal() { }
animal::~animal() { }
voidanimal::born()
{
cout<<"animal";
}
///////////////////////horse
classhorse:publicanimal
{
public:
horse();
~horse();
virtualvoidborn();
};

horse::horse() { }
horse::~horse() { }
voidhorse::born()
{
cout<<"horse";
}
///////////////////////main
voidmain()
{
animala;
horseb;
a.fun1(&b);
}

//output:horse

6.不用虚函数
#include<iostream.h>
classanimal
{
public:
animal();
~animal();
voidfun1(animal*maybedog_maybehorse);
voidborn();
};

voidanimal::fun1(animal*maybedog_maybehorse)
{
maybedog_maybehorse->born();
}

animal::animal() { }
animal::~animal() { }
voidanimal::born()
{
cout<<"animal";
}
////////////////////////horse
classhorse:publicanimal
{
public:
horse();
~horse();
voidborn();
};

horse::horse() { }
horse::~horse() { }
voidhorse::born()
{
cout<<"horse";
}
////////////////////main
voidmain()
{
animala;
horseb;
a.fun1(&b);
}
//output:animal
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值