在C++中,一旦在基类中将成员函数声明为虚函数,则该函数在从该基类派生的每个类中都将变为虚函数。换句话说,在声明虚拟基类函数的重新定义版本时,不必在派生类中使用关键字virtual。
例如,以下程序将打印“ C :: fun()称为”,因为B :: fun()自动变为虚拟。
#include
using namespace std;
class A {
public:
virtual void fun()
{ cout<<"\n A::fun() called ";}
};
class B: public A {
public:
void fun()
{ cout<<"\n B::fun() called "; }
};
class C: public B {
public:
void fun()
{ cout<<"\n C::fun() called "; }
};
int main()
{
C c; // An object of class C
B *b = &c; // A pointer of type B* pointing to c
b->fun(); // this line prints "C::fun() called"
getchar();
return 0;
}
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。