欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

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

时间:2020-11-18 00:30:34|栏目: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

总结

上一篇:OpenCV使用鼠标响应裁剪图像

栏    目:C代码

下一篇:OpenCV实现图像角点检测

本文标题:关于C++友元类的实现讲解

本文地址:http://www.codeinn.net/misctech/23721.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有