C++ 友元

C++ 友元


前言

当你想在类的成员函数外部直接访问对象的私有成员时,C++ 就提供了友元(friend)的概念。在类中指定的友元就可以访问该类中受保护的内容。

一、成员函数作为友元

成员函数作为友元即为 类B 中的成员函数被 类A 视为友元,在这种情况下可以使用 类B 中被视为友元的函数访问 类A 中的受保护信息。

示例如下:

#include <iostream>
#include <string>

using namespace std;

class A;

class B{
public:
	B();

	void find_name();  //必须是处于 public 下的成员函数才能做为友元
	
	A *theA;
private:
	void find_id();   //该成员函数处于 private 下所以无法作为友元
};

class A{
	friend void B::find_name();
public:
	A();
private:
	string name;
	int id;
};
A::A(){
	name = "qwea";
	id = 10;
}
B::B(){
	theA = new A;
}

void B::find_name(){
	cout << theA->name << endl;
}

void test(){
	B theB;
	theB.find_name();
}

int main()
{
	test();
	return 0;
}

结果如下:
在这里插入图片描述

二、类作为友元

类作为友元即为 类B 将 类A 视为友元,在这种情况下,类A 中的方法都能访问 类B 中受保护元素。
代码如下(示例):

#include <iostream>
#include <string>

using namespace std;

class B;

class A{
public:
	A();
	void find_name();
	void find_id();
	
	B *theB;
};

class B{
	friend class A;  //将 类A 视为友元,使其内的方法能访问 类B 中受保护内容
public:
	B();
private:
	string name;
	int id;
};

A::A(){
	theB = new B;
}

B::B(){
	name = "qaz";
	id = 10;
}

void A::find_name(){
	cout << theB->name << endl;
}

void A::find_id(){
	cout << theB->id << endl;
}

void test(){
	A theA;
	theA.find_name();
	theA.find_id();
}

int main(){
	test();

	return 0;
}

结果如下:
在这里插入图片描述

三、全局函数作为友元

全局函数作为友元即为 类A 将一个 全局函数 视为友元,在这种情况下,该全局函数能访问到 类A 中受保护内容。
代码如下(示例):

#include <iostream>
#include <string>

using namespace std;

void find_NameAndId();

class A{
	friend void find_NameAndId(A theA);

public:
	A();

private:
	string name;
	int id;
};

A::A(){
	name = "tgh";
	id = 10;
}

void find_NameAndId(A theA){
	cout << theA.name << endl;
	cout << theA.id << endl;
}

int main(){
	A theA;

	find_NameAndId(theA);

	return 0;
}
		

结果如下:
在这里插入图片描述


本文章如有错误,欢迎指正!

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值