91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在C++中實現一個友元類

發布時間:2021-06-02 16:43:26 來源:億速云 閱讀:163 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關怎么在C++中實現一個友元類,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

C++中的友元既可以實現友元函數,也可以實現友元類,也就是說一個類也可以作為另外一個類的友元。當作為一個類的友元時,它的所有成員函數都是另一個類的友元函數,都可以訪問另一個類的私有或者公有成員。

#include <iostream>
#include <cstring>
using namespace std ;
//聲明教師類 
class Techer ;
//學生類 
class Student 
{
 private:
 string name ;
 int age ; 
 char sex ; 
 int score ; 
 public :
 Student(string name , int age , char sex , int score);
 void stu_print(Techer &tech);
};
//教師類 
class Techer
{
 private:
 string name ;
 int age ; 
 char sex ; 
 int score ; 
 public :
 Techer(string name , int age , char sex , int score);
 //聲明一個友元類
 friend Student ;
};
//Student類的構造函數的實現 
Student::Student(string name , int age , char sex , int score)
{
 this->name = name ; 
 this->age = age ; 
 this->sex = sex ; 
 this->score = score ;
}
//Techer類的構造函數的實現
Techer::Techer(string name , int age , char sex , int score)
{
 this->name = name ; 
 this->age = age ; 
 this->sex = sex ; 
 this->score = score ;
}
//打印Student類中的私有成員和Techer的私有成員 
void Student::stu_print(Techer &tech)
{
 //用this指針訪問本類的成員 
 cout << this->name << endl ; 
 cout << this->age << endl ; 
 cout << this->sex << endl ; 
 cout << this->score << endl ;
 //訪問Techer類的成員 
 cout << tech.name << endl ;
 cout << tech.age << endl ; 
 cout << tech.sex << endl ; 
 cout << tech.score << endl ;
}
int main(void)
{
 Student stu1("YYX",24,'N',86);
 Techer t1("hou",40,'N',99);
 stu1.stu_print(t1);
 return 0 ;
}

運行結果:

YYX
24
N
86
hou
40
N
99

上述就是小編為大家分享的怎么在C++中實現一個友元類了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

威宁| 清流县| 丰县| 新沂市| 平谷区| 和政县| 上蔡县| 勃利县| 定结县| 桦甸市| 镇平县| 东乡| 甘南县| 肇庆市| 广南县| 巢湖市| 措勤县| 沙河市| 遂平县| 林周县| 拜城县| 文山县| 金堂县| 潜江市| 博爱县| 阿鲁科尔沁旗| 义乌市| 阳城县| 河北区| 赫章县| 张家界市| 如东县| 棋牌| 长垣县| 固阳县| 陵川县| 新宁县| 德惠市| 舞钢市| 达孜县| 金寨县|