C++複習要點總結十一——多態(二)

來源:互聯網
上載者:User

一 建構函式中能調用虛函數,實現多態嗎

1)對象中的VPTR指標什麼時候被初始化?

對象在建立的時,由編譯器對VPTR指標進行初始化

只有當對象的構造完全結束後VPTR的指向才最終確定

父類對象的VPTR指向父類虛函數表

子類對象的VPTR指向子類虛函數表

class Parent{ public:Parent(int a=0)//執行時此時的調用的print函數仍然是父類的函數(此時會將vptr指標指向父類的虛函數表){this->a = a;print();}virtual void print() { cout<<"我是爹"<<endl; }private:int a;};class Child : public Parent{ public:Child(int a = 0, int b=0):Parent(a)//先執行父類構造器,執行完之後返回子類(vprt指標指回子類虛函數表){this->b = b;print();}virtual void print(){cout<<"我是兒子"<<endl;}private:int b;};void HowToPlay(Parent *base){base->print(); //有多態發生 //2 動手腳 }void main(){Child c1; //定義一個子類對象 ,在這個過程中,在父類建構函式中調用虛函數print 能發生多態嗎?system("pause");return ;}

二 父類指標步長和子類指標步長不一致時

class Parent{public:Parent(int a=0){this->a = a;}virtual void print() {cout<<"我是爹"<<endl;}private:int a;};//成功 ,一次偶然的成功 ,必然的失敗更可怕class Child : public Parent{public:/*Child(int a = 0, int b=0):Parent(a){this->b = b;print();}*/Child(int b = 0):Parent(0){//this->b = b;}virtual void print(){cout<<"我是兒子"<<endl;}private://int b;};void HowToPlay(Parent *base){base->print(); //有多態發生 //2 動手腳 }void main(){Child c1; //定義一個子類對象 ,在這個過程中,在父類建構函式中調用虛函數print 能發生多態嗎?//c1.print();Parent *pP = NULL;Child *pC = NULL;Child array[] = {Child(1), Child(2), Child(3)};pP = array;pC = array;pP->print();pC->print(); //多態發生pP++;pC++;pP->print();pC->print(); //多態發生pP++;pC++;pP->print();pC->print(); //多態發生cout<<"hello..."<<endl;system("pause");return ;}

以上就是C++複習要點總結十一——多態(二)的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.