- 小例子
#include<iostream>
using namespace std;
class A{
public:
A(){}
void hhh(){
cout<<"A hhh"<<endl;
}
virtual void foo(){
cout<<"This is A."<<endl;
}
};
class B: public A{
public:
B(){}
void hhh(){
cout<<"B hhh"<<endl;
}
void foo(){
cout<<"This is B."<<endl;
}
};
int main(){
A *a = new A();
a->hhh();
a->foo();
A *b = new B();
b->hhh();
b->foo();
}
为什么会有第三行的结果呢?
因为我们使用一个 A 类指针去调用函数 hhh(),虽然实际上这个指针指向的是 B 类,但是编译器无法指导这一事实。它只能按照调用 A 类的函数来理解并调用。所以我们看到了第三行的结果。
那么第四行的结果又是咋回事呢?
我们注意到,foo() 函数在基类中被 virtual 关键字修饰,也就是说它是一个虚函数。
虚函数最关键的特点是"动态联编",它可以运行时判断指针指向的对象,并自动调用相应的函数
网友评论