热度 2
2021-8-21 13:15
1385 次阅读|
0 个评论
友元 1.含义:可以访问朋友类中的私有成员(变量或函数) 2.友元函数和友元类 1.友元函数 声明格式: friend 返回值类型 函数名(形参表); 1.全局函数作为类的友元函数 例: #include using namespace std; class Student{ private: string name; int age; public: Student(){} Student(string n, int a):name(n),age(a){} friend int print_studnet_info(Student &); //声明 print_studnet_info 函数是Student类的友元函数 //在友元函数中可以访问 Student 类的私有成员 }; int print_studnet_info(Student &stu){ cout<