多態是什麼?簡單來說,就是某段程序調用了一個API接口,但是這個API有許多種實現,根據上下文的不同,調用這段API的程序,會調用該API的不同實現。今天我們只關注繼承關系下的多態。
還是得通過一個例子來看看C++是怎樣在編譯期和運行期來實現多態的。很簡單,定義了一個Father類,它有一個testVFunc虛函數喲。再定義了一個繼承Father的Child類,它重新實現了testVFunc函數,當然,它也學習Father定義了普通的成員函數testFunc。大家猜猜程序的輸出是什麼?
[cpp]
- #include <iostream>
- using namespace std;
-
- class Father
- {
- public:
- int m_fMember;
-
- void testFunc(){
- cout<<"Father testFunc "<<m_fMember<<endl;
- }
- virtual void testVFunc(){
- cout<<"Father testVFunc "<<m_fMember<<endl;
- }
- Father(){m_fMember=1;}
- };
-
- class Child : public Father{
- public:
- int m_cMember;
- Child(){m_cMember=2;}
-
- virtual void testVFunc(){cout<<"Child testVFunc "<<m_cMember<<":"<<m_fMember<<endl;}
- void testFunc(){cout<<"Child testFunc "<<m_cMember<<":"<<m_fMember<<endl;}
- void testNFunc(){cout<<"Child testNFunc "<<m_cMember<<":"<<m_fMember<<endl;}
- };
-
-
- int main()
- {
- Father* pRealFather = new Father();
- Child* pFalseChild = (Child*)pRealFather;
- Father* pFalseFather = new Child();
-
- pFalseFather->testFunc();
- pFalseFather->testVFunc();
-
- pFalseChild->testFunc();
- pFalseChild->testVFunc();
- pFalseChild->testNFunc();
-
- return 0;
- }
同樣調用了testFunc和testVfunc,輸出截然不同,這就是多態了。它的g++編譯器輸出結果是:
[cpp]
- Father testFunc 1
- Child testVFunc 2:1
- Child testFunc 0:1
- Father testVFunc 1
- Child testNFunc 0:1
看看main函數裡調用的五個test*Func方法吧,這裡有靜態的多態,也有動態的多態。編譯是靜態的,運行是動態的。以下解釋C++編譯器是怎麼形成上述結果的。
首先讓我們用gcc -S來生成匯編代碼,看看main函數裡是怎麼調用這五個test*Func方法的。
[cpp]
- movl $16, %edi
- call _Znwm
- movq %rax, %rbx
- movq %rbx, %rdi
- call _ZN6FatherC1Ev
- movq %rbx, -32(%rbp)
- movq -32(%rbp), %rax
- movq %rax, -24(%rbp)
- movl $16, %edi
- call _Znwm
- movq %rax, %rbx
- movq %rbx, %rdi
- call _ZN5ChildC1Ev
- movq %rbx, -16(%rbp)
- movq -16(%rbp), %rdi
- <span style="color:#ff0000;"> call _ZN6Father8testFuncEv 本行對應pFalseFather->testFunc();</span>
- movq -16(%rbp), %rax
- movq (%rax), %rax
- movq (%rax), %rax
- movq -16(%rbp), %rdi
- <span style="color:#ff0000;"> call *%rax 本行對應pFalseFather->testVFunc();</span>
- movq -24(%rbp), %rdi
- <span style="color:#ff0000;"> call _ZN5Child8testFuncEv 本行對應pFalseChild->testFunc();</span>
- movq -24(%rbp), %rax
- movq (%rax), %rax
- movq (%rax), %rax
- movq -24(%rbp), %rdi
- <span style="color:#ff0000;"> call *%rax 本行對應pFalseChild->testVFunc(); </span>
- movq -24(%rbp), %rdi
- <span style="color:#ff0000;"> call _ZN5Child9testNFuncEv 本行對應pFalseChild->testNFunc(); </span>
- movl $0, %eax
- addq $40, %rsp
- popq %rbx
- leave
紅色的代碼,就是在依次調用上面5個test*Func。可以看到,第1、3次testFunc調用,其結果已經在編譯出來的匯編語言中定死了,C++代碼都是調用某個對象指針指向的testFunc()函數,輸出結果卻不同,第1次是:Father testFunc 1,第3次是:Child testFunc 0:1,原因何在?在編譯出的匯編語言很明顯,第一次調用的是_ZN6Father8testFuncEv代碼段,第三次調用的是_ZN5Child8testFuncEv代碼段,兩個不同的代碼段!編譯完就已經決定出同一個API用哪種實現,這就是編譯期的多態。