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

这里写目录标题

  • 为什么要使用友元
      • 友元的两种使用形式
    • 友元类
      • 使用注意

为什么要使用友元

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

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

华为与IBM 40亿的咨询故事
为什么要使用友元,友元类_第1张图片
为什么要使用友元,友元类_第2张图片
IBM需要对华为各级部门做深度咨询分析,
为了提高咨询效率,由任正非直接授权,直接获取各部门的所有权限。

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

友元的两种使用形式

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

Computer.h

#pragma once
#include 

class Computer
{
     
public:
	Computer();

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

	std::string description();

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

Computer.cpp

#include "Computer.h"
#include 	

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

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

main.cpp

#include 
#include 
#include 

#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任意区域内。

你可能感兴趣的:(C++,笔记,c++,封装,编程语言)