码迷,mamicode.com
首页 > 其他好文 > 详细

友元类使用例子

时间:2019-06-05 00:51:58      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:inf   friend   detail   bsp   highlight   传递   blank   http   article   

友元类:

友元关系不可传递,不能继承,是单向的。
友元类是为了访问类的私有和保护成员
 

class A
{
public:
    friend class B;//B是A的成员函数 所以B得成员函数可以通过A的对象访问A的保护和私有成员
    int aa;
private:
    int aaa;
};
class B
{
public:
    int dd;
    void prinf()
    {
        a.aaa = 3;//可以访问A的私有和保护成员
        a.aa = 9;
    }
private:
    A a;//定义A的对象
};  

 

【转】:https://blog.csdn.net/lmb1612977696/article/details/64597173
 

友元类使用例子

标签:inf   friend   detail   bsp   highlight   传递   blank   http   article   

原文地址:https://www.cnblogs.com/hshy/p/10977010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!