C++ 中最基礎的部分…

來源:互聯網
上載者:User

父類訪問特性                類的繼承特性            子類的訪問特性
   public                                                       public
   protected                     public                    protected   
   private                                                     No access

 

   public                                                       protected
   protected                     protected               protected
   private                                                     No aceess

 

   public                                                       private
   protected                    private                    private
   private                                                     No access

 

函數的重載是發生在一個類當中的,而函數的覆蓋是發生在父類與子類之間的.

 

不是靜態成員時,子類可以用類似 A::function()來訪問A的函數,A::b成員亦可。A表示父類名。

C++的多態性:當C++編譯器在編譯的時候,發現其父類是虛函數時,就會採用遲綁定技術,根據所傳對象的類型

來判定調用哪個函數(父類或子類)。前提是傳遞子類的指標:子類有的話調用子類,子類沒有調用父類。

 

還有一種純虛函數:父類只定義操作,並沒實現,繼承類必須實現它。

 

#include <iostream>
using namespace std;
class Animal
{
public:
 static const int cc=1;
 /*virtual*/ void breathe()
 {
  cout<<"animal breath"<<endl;
 }
              //virtual void breathe()=0;
};
class Fish: public Animal
{
public:
 Fish():a(22)
 {
 }
 void breathe()
 {
  cout<<Animal::cc<<endl;
  cout<<"fish breathe"<<endl;
 }
private:
 const int a;
};

void fun(Animal* pAn)
{
 pAn->breathe();
}

int main()
{
 Fish fi;
 Animal *pa;
 pa=&fi;
 fun(pa);
 system("pause");
 return 0;
}

聯繫我們

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