虚函数
概念
微软官方文档介绍: A virtual function is a member function that you expect to be redefined in derived classes.When you refer to a derived class object using a pointer or a reference to the base class, you can call a virtual function for that object and execute the derived class’s version of the function.
本质上,虚函数是成员函数的一种。它主要应用在多态的场景。它是为了我们能够在定义子类时可以重载从父类继承过来的成员函数(即虚函数)。如果不需要重载,我们也可以直接调用执行它,把它当作普通的成员函数。
代码演示(C++)
我们可以写一个父类和一个子类:
1 | class parent |
然后我们调用它:
1 | int main() |
运行结果如图:
从结果来看,parent类里的B已经被son类的B重载了。
底层原理
那么追根究底,虚函数底层逻辑是什么呢?