程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> 入門教程:實例詳解C++友元

入門教程:實例詳解C++友元

編輯:C++入門知識
  在說明什麼是友元之前,我們先說明一下為什麼需要友元與友元的缺點:
  
   <!-- frame contents --> <!-- /frame contents -->   通常對於普通函數來說,要訪問類的保護成員是不可能的,假如想這麼做那麼必須把類的成員都生命成為public(共用的),然而這做帶來的問題遍是任何外部函數都可以毫無約束的訪問它操作它,c++利用friend修飾符,可以讓一些你設定的函數能夠對這些保護數據進行操作,避免把類成員全部設置成public,最大限度的保護數據成員的安全。
  
     友元能夠使得普通函數直接訪問類的保護數據,避免了類成員函數的頻繁調用,可以節約處理器開銷,提高程序的效率,但矛盾的是,即使是最大限度的保護,同樣也破壞了類的封裝特性,這即是友元的缺點,在現在cpu速度越來越快的今天我們並不推薦使用它,但它作為c++一個必要的知識點,一個完整的組成部分,我們還是需要討論一下的。
  
  在類裡聲明一個普通函數,在前面加上friend修飾,那麼這個函數就成了該類的友元,可以訪問該類的一切成員。
  
  下面我們來看一段代碼,看看我們是如何利用友元來訪問類的一切成員的。#include <iostream>   
  using namespace std; 
  class Internet   
  {   
  public:   
      Internet(char *name,char *address)   
      {   
          strcpy(Internet::name,name);   
          strcpy(Internet::address,address);    
      } 
  friend void ShowN(Internet &obj);//友元函數的聲明 
  public:   
      char name[20]; 
      char address[20]; 
  }; 
   
   
  void ShowN(Internet &obj)//函數定義,不能寫成,void Internet::ShowN(Internet &obj) 
  { 
      cout<<obj.name<<endl; 
  } 
  void main()   
  { 
      Internet a("中國軟件開發實驗室","www.cndev-lab.com"); 
      ShowN(a); 
      cin.get(); 
  }   上面的代碼通過友元函數的定義,我們成功的訪問到了a對象的保護成員name,友元函數並不能看做是類的成員函數,它只是個被聲明為類友元的普通函數,所以在類外部函數的定義部分不能夠寫成void Internet::ShowN(Internet &obj),這一點要注重。 更多內容請看Asp.Net教程  C/C++技術學堂  C/C++技術專題專題,或   一個普通函數可以是多個類的友元函數,對上面的代碼我們進行修改,注重觀察變化: <!-- frame contents --> <!-- /frame contents --> #include <iostream>   
  
   using namespace std; 
  class Country; 
  class Internet   
  {   
  public:   
      Internet(char *name,char *address)   
      {   
          strcpy(Internet::name,name);   
          strcpy(Internet::address,address);    
      } 
  friend void ShowN(Internet &obj,Country &cn);//注重這裡 
  public:   
      char name[20]; 
      char address[20]; 
  }; 
   
  class Country 
  { 
  public: 
      Country() 
      { 
          strcpy(cname,"中國"); 
      } 
  friend void ShowN(Internet &obj,Country &cn);//注重這裡 
  protected: 
      char cname[30]; 
  }; 
   
  void ShowN(Internet &obj,Country &cn) 
  { 
      cout<<cn.cname<<""<<obj.name<<endl; 
  } 
  void main()   
  { 
      Internet a("中國軟件開發實驗室","www.cndev-lab.com"); 
      Country b; 
      ShowN(a,b); 
      cin.get(); 
  }  一個類的成員函數函數也可以是另一個類的友元,從而可以使得一個類的成員函數可以操作另一個類的數據成員,我們在下面的代碼中增加一類Country,注重觀察:#include <iostream>   
  using namespace std; 
  class Internet; 
   
  class Country 
  { 
  public: 
      Country() 
      { 
          strcpy(cname,"中國"); 
      } 
      void Editurl(Internet &temp);//成員函數的聲明 
  protected: 
      char cname[30]; 
  }; 
  class Internet 
  {   
  public:   
      Internet(char *name,char *address)   
      {   
          strcpy(Internet::name,name);   
          strcpy(Internet::address,address);  
      } 
      friend void Country::Editurl(Internet &temp);//友元函數的聲明 
  protected:   
      char name[20]; 
  
       char address[20]; 
  }; 
  void Country::Editurl(Internet &temp)//成員函數的外部定義 
  { 
      strcpy(temp.address,"edu.cndev-lab.com"); 
      cout<<temp.name<<""<<temp.address<<endl; 
  } 
  void main() 
  { 
      Internet a("中國軟件開發實驗室","www.cndev-lab.com"); 
      Country b; 
      b.Editurl(a); 
      cin.get(); 
  }  整個類也可以是另一個類的友元,該友元也可以稱做為友類。友類的每個成員函數都可以訪問另一個類的所有成員。
   更多內容請看ASP.NET教程  C/C++技術學堂  C/C++技術專題專題,或
  示例代碼如下:#include <iostream>   
  using namespace std; 
  class Internet; 
   <!-- frame contents --> <!-- /frame contents -->  
  class Country 
  { 
  public: 
      Country() 
      { 
          strcpy(cname,"中國"); 
      } 
      friend class Internet;//友類的聲明 
  protected: 
      char cname[30]; 
  }; 
  class Internet 
  { 
  public:   
      Internet(char *name,char *address)   
      {   
          strcpy(Internet::name,name);   
          strcpy(Internet::address,address);  
      } 
      void Editcname(Country &temp); 
  protected:   
      char name[20]; 
      char address[20]; 
  }; 
  void Internet::Editcname(Country &temp) 
  { 
      strcpy(temp.cname,"中華人民共和國");  
  } 
  void main() 
  { 
      Internet a("中國軟件開發實驗室","www.cndev-lab.com"); 
      Country b; 
      a.Editcname(b); 
      cin.get(); 
  
   }  在上面的代碼中我們成功的通過Internet類Editcname成員函數操作了Country類的保護成員cname。
  
  在編程中,我們使用友元的另外一個重要原因是為了方便重載操作符的使用,這些內容我們將在後面的教程著重討論! 更多內容請看ASP.NET教程  C/C++技術學堂  C/C++技術專題專題,或
 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved