服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - 关于C++友元类的实现讲解

关于C++友元类的实现讲解

2021-07-13 16:19Engineer-Bruce_Yang C/C++

今天小编就为大家分享一篇关于关于C++友元类的实现讲解,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

C++中的友元既可以实现友元函数,也可以实现友元类,也就是说一个类也可以作为另外一个类的友元。当作为一个类的友元时,它的所有成员函数都是另一个类的友元函数,都可以访问另一个类的私有或者公有成员。

请看实例:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#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

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接

原文链接:https://blog.csdn.net/morixinguan/article/details/74943901

延伸 · 阅读

精彩推荐