目录
友元类
友元类的所有成员函数都可以是另一个类的友元函数,都可以访问另一个类中的非公有成员。友元关系是单向的,不具有交换性。
示例代码1:内部类中使用友元类
class Time
{
friend class Date; // 友元类声明
public:
Time(int hour = 0, int minute = 0, int second = 0)
: _hour(hour)
, _minute(minute)
, _second(second)
{}
private:
int _hour;
int _minute;
int _second;
};
class Date
{
public:
Date(int year = 1900, int month = 1, int day = 1)
: _year(year)
, _month(month)
, _day(day)
{}
void SetTimeOfDate(int hour, int minute, int second)
{
// 直接访问时间类私有的成员变量
_t._hour = hour;
_t._minute = minute;
_t._second = second;
}
private:
int _year;
int _month;
int _day;
Time _t;
};
比如上述Time类和Date类,在Time类中声明Date类为其友元类,那么可以在Date类中直接访问Time类的私有成员变量,但想在Time类中访问Date类中私有的成员变量则不行。
示例代码2:使用仿函数时声明友元类
#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;
class Student
{
private:
friend class compare; // 友元类声明
string _name;
int _age;
public:
Student()
:_name(""),
_age(-1)
{}
Student(const string& name, int age)
:_name(name),
_age(age)
{}
void print()
{
cout << "*************** student info ***************"<<endl;
cout<<"name: "<<_name<<endl;
cout<<"age: "<<_age<<endl;
}
};
struct compare // 在仿函数中使用student中的成员变量
{
bool operator()(const Student& s1, const Student& s2)
{
return s1._age < s2._age;
}
};
int main()
{
vector<Student> v;
v.push_back({"Li Longyu", 19});
v.push_back({"Wu Weilian", 56});
v.push_back({"Wang Ziqian", 12});
for(auto& e : v)
e.print();
cout<<endl<<endl;
sort(v.begin(),v.end(),compare());
for(auto& e : v)
e.print();
return 0;
}