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

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Engineer-Bruce_Yang

谢谢您

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值