c++——友元

c++允许 友元 访问私有数据。

友元的语法:

friend关键字只出现在声明处
其他类、类成员函数、全局函数都可声明为友元
友元函数不是类的成员,不带this指针
友元函数可访问对象任意成员属性,包括私有属性。

普通全局函数作为类的友元

class Room
{
    friend void myBestFriend(Room &room);
private:
    string bedRoom;
public:
    string sittingRoom;
public:
    Room()
    {
        this->bedRoom = "卧室";
        this->sittingRoom = "客厅";
    }
};
void myBestFriend(Room &room)
{
    cout<<"好朋友访问了你的"<< room.sittingRoom <<endl;
    cout<<"好朋友访问了你的"<< room.bedRoom <<endl;

}
void test0()
{
    Room myRoom;
    myBestFriend(myRoom);
}

类的某个成员函数、类的整体作为另一个类的友元

#include <iostream>
#include <string>
using namespace std;

class Room;

class BestFriend
{
public:
    void myBestFriend1(Room &room);
    void myBestFriend2(Room &room);

};

class Room
{
    friend class BestFriend;//一个类整体作为另一个类的友元

    //friend void BestFriend::myBestFriend1(Room &room);//一个类的成员 作为另一个类的友元

private:
    string bedRoom;
public:
    string sittingRoom;
public:
    Room()
    {
        this->bedRoom = "卧室";
        this->sittingRoom = "客厅";
    }
};
void test0()
{
    BestFriend Tom;
    Room myRoom;
    Tom.myBestFriend1(myRoom);
    Tom.myBestFriend2(myRoom);

}

int main(int argc, char *argv[])
{
    test0();
    return 0;
}

void BestFriend::myBestFriend1(Room &room)
{
    cout<<"好朋友1访问了你的"<< room.sittingRoom <<endl;
    cout<<"好朋友1访问了你的"<< room.bedRoom <<endl;
}

void BestFriend::myBestFriend2(Room &room)
{
    cout<<"好朋友2访问了你的"<< room.sittingRoom <<endl;
    cout<<"好朋友2访问了你的"<< room.bedRoom <<endl;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值