歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

友元函數的簡單使用(C++實現)

友元函數是指某些雖然不是類成員卻能夠訪問類的所有成員的函數類授予它的友元函數特別的訪問權。
定義格式:friend <返回類型> <函數名> (<參數列表>);
  1. //friend.cc   
  2. #include <iostream>   
  3. #include <cstring>   
  4. using namespace std;  
  5.   
  6.   
  7. class Student  
  8. {  
  9.     private:  
  10.     int no;  
  11.     char name[20];  
  12.     public:  
  13.     Student(intconst char*);  
  14.     friend void print(const Student&);  
  15.     friend ostream& operator<<(ostream&, const Student&);  
  16. };  
  17.   
  18.   
  19. Student::Student(int no, const char *name)  
  20. {  
  21.     this->no = no;  
  22.     //name是一個char類型的數組,故不能直接用stu.name = "hahaya"進行賦值   
  23.     strcpy(this->name, name);  
  24. }  
  25.   
  26.   
  27. void print(const Student &stu)  
  28. {  
  29.     cout << "學號:" << stu.no << "姓名:" << stu.name << endl;  
  30. }  
  31.   
  32.   
  33. ostream& operator<<(ostream &os, const Student &stu)  
  34. {  
  35.     os << "學號:" << stu.no << "姓名:" << stu.name;  
  36.     return os;  
  37. }  
  38.   
  39.   
  40. int main()  
  41. {  
  42.     Student stu(1, "hahaya");  
  43.   
  44.   
  45.     print(stu);  
  46.     cout << stu << endl;  
  47.   
  48.   
  49.     return 0;  
  50. }  
程序運行結果:

        在friend.cc中定義了兩個友元函數,從這兩個函數中不難發現:一個類的友元函數可以訪問該類的私有成員。其中重載的"<<"操作符必須定義為友元函數,因為輸出流os對象會調用Student類中的私有成員。如果不定義為友元函數,則類外對象不能調用該類的私有成員。
Copyright © Linux教程網 All Rights Reserved