c++父類子類同名變數

來源:互聯網
上載者:User

當父類與子類有同名且變數時:

class Base  {  public:  int i;  Base()  {  printf("Base()\n");  i = 99;  amethod();  }  void amethod()  {  printf("Base.amethod()\n");  }  };  class Derived : public Base  {  public:  int i;  Derived() {  printf("Derived()\n");  i = -1;  }  void amethod()  {  printf("Derived.amethod()\n");  }  };  int main(int argc, char *argv[])  {  Base *b = new Derived(); //Derived *b = new Derived();printf("%d\n",b->i);printf("%d\n",((Derived*)b)->i);b->amethod();return 0;}
輸出結果為:

Base()

Base.amethod()

Derived()

99

-1

Derived.amethod() "b->i"指向的是父類的i,而"((Derived*)b)->i"指向的是子類的i。由此可見字元類中有同名成員變數的時候,用哪個變數完全是有指標類型指定的,這跟成員函數表現是不一樣的。究其原因,父類的i和子類的i兩個變數都在執行個體b中,而b的成員函數amethod()的地址是固定的只有一個,那就是Derived::amethod()。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.