标签:friend 变量 友元 成员 text 作用 定义 通过 直接
友元全局函数以及友元成员函数
关键字: friend
class A{ //友元全局函数 friend void printXY(A & a); //友元成员函数,是B的成员函数 friend void B::printXY(A & a); public: A(int a,int b){} private: int m_a; int m_b; }; class B{ public: void printXY(A & a){ cout<< a.m_a<<endl; cout<< a.m_b<<endl; } } int main(){ void printXY(A & a){ cout<< a.m_a<<endl; cout<< a.m_b<<endl; }
友元函数的作用:可以通过全局函数或者其他类的成员函数,访问类中的私有成员变量。
友元类
//声明一下A类 class A; //定义友元类 class B{ friend A; public: B(int x, int y){} private: int _x; int _y; }; class A{ public: void printXY(){ cout<<b._x<<b._y<<endl; } private: B b; };
通过友元类可以直接访问友元类中的私有成员变量
关于友元的注意事项
标签:friend 变量 友元 成员 text 作用 定义 通过 直接
原文地址:https://www.cnblogs.com/geooeg/p/9650448.html