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()版本,解决了继承来的二义性问题。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。