C++中判断成员函数是否重写
判断一个成员函数是不是虚函数(重写),有两个三个条件:
注意:如果这两个函数的返回类型分别为基类和派生类,返回值为指向基类和派生类的指针或引用,则也构成重写。此返回类型称为协变。
调用这些成员函数时,使用对象指针,这样当指针指向不同的对象时,就可以调用不同类的成员函数。
下面给一个程序分析:
#include<iostream>using namespace std;class Grandam{public: virtual void introduce_self() { cout << "I am grandam." << endl; }};class Mother:public Grandam{public: void introdude_self() { cout << "I am mother." << endl; }};class Daughter :public Mother{public: void introduce_self() { cout << "I am daughter." << endl; }};int main(){ Grandam* ptr; Grandam g; Mother m; Daughter d; ptr = &g; ptr->introduce_self(); ptr = &m; ptr->introduce_self(); ptr = &d; ptr->introduce_self(); return 0;}
结果如图所示:
从结果可知,每次都执行了成员函数的虚函数introduce_self()版本,解决了继承来的二义性问题。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
新闻热点
疑难解答