为什么要使用友元,友元类

Posted Respect@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么要使用友元,友元类相关的知识,希望对你有一定的参考价值。

为什么要使用友元

C++是面向对象的,目的之一:封装

封装:
优点之一,就是安全。
缺点:在某些特殊的场合,不是很方便。

华为与IBM 40亿的咨询故事
在这里插入图片描述
在这里插入图片描述
IBM需要对华为各级部门做深度咨询分析,
为了提高咨询效率,由任正非直接授权,直接获取各部门的所有权限。

使用前提:
某个类需要实现某种功能,但是这个类自身,因为各种原因,无法自己实现。
需要借助于“外力”才能实现。

友元的两种使用形式

友元函数:
使用全局函数作为友元函数
需求:
计算机和计算机的升级

Computer.h

#pragma once
#include <string>

class Computer
{
public:
	Computer();

	// 使用全局函数作为友元函数
	friend void upgrade(Computer* computer);

	std::string description();

private:
	std::string cpu; //CPU芯片
};

Computer.cpp

#include "Computer.h"
#include <sstream>	

Computer::Computer()
{
	cpu = "i7";
}

std::string Computer::description()
{
	std::stringstream  ret;
	ret << "CPU:" << cpu;
	return ret.str();
}

main.cpp

#include <stdio.h>
#include <iostream>
#include <Windows.h>

#include "Computer.h"

void upgrade(Computer* computer) {
	computer->cpu = "i9";  //直接访问对象的私有数据成员!!!
}

int main(void) {
	Computer shanxing;
	std::cout << shanxing.description() << std::endl;
	
	upgrade(&shanxing);

	std::cout << shanxing.description() << std::endl;

	system("pause");
	return 0;
}

友元类

为什么要使用友元类
一个独立的咨询师, 给其他企业做服务时,这个咨询师作为企业的“友元函数”即可。

一个大型的咨询服务公司,比如IBM(IT事务), 普华永道(会计事务),给其他企业做服务时,使用友元函数就不是很方便了,因为需要设计很多友元函数,不方便。

解决方案:使用“友元类”

友元类的作用
如果把A类作为B类的友元类,
那么A类的所有成员函数【在A类的成员函数内】,就可以直接访问【使用】B类的私有成员。
即,友元类可以直接访问对应类的所有成员!!!

使用注意

友元类,和友元函数,使用friend关键字进行声明即可,与访问权限无关,
所以,可以放在private/pulic/protected任意区域内。

以上是关于为什么要使用友元,友元类的主要内容,如果未能解决你的问题,请参考以下文章

友元的友元类

友元函数和友元类

5 友元类

为啥 C++ 友元类只需要在其他命名空间中进行前向声明?

C++中,啥叫友元函数?啥叫友元类?请举例说明。

友元函数友元类