C++子類父類成員函式的覆蓋和隱藏例項詳解
阿新 • • 發佈:2018-12-30
https://www.jb51.net/article/117380.htm
函式的覆蓋
覆蓋發生的條件:
(1) 基類必須是虛擬函式(使用virtual 關鍵字來進行宣告)
(2)發生覆蓋的兩個函式分別位於派生類和基類
(3)函式名和引數列表必須完全相同
函式的隱藏
隱藏發生的條件:
(1)子類和父類的函式名相同,引數列表可以不一樣
看完下面的例子就明白了
#include "iostream" using namespace std; class CBase{ public: virtual void xfn(int i){ cout << "Base::xfn(int i)" << endl; //1 } void yfn(float f){ cout << "Base::yfn(float)" << endl; //2 } void zfn(){ cout << "Base::zfn()" << endl; //3 } }; class CDerived : public CBase{ public: void xfn(int i){ cout << "Derived::xfn(int i)" << endl; //4 } void yfn(int c){ cout << "Derived:yfn(int c)" << endl; //5 } void zfn(){ cout << "Derived:zfn()" << endl; //6 } }; void main(){ CDerived d; CBase *pb = &d; CDerived *pd = &d; pb->xfn(5); //覆蓋 pd->xfn(5); //直接呼叫 pb->yfn(3.14f); //直接呼叫 pd->yfn(3.14f); //隱藏 pb->zfn(); //直接呼叫 pd->zfn(); //隱藏 }
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支援!