欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++友元函数访问类的私有成员(代码实例)

程序员文章站 2022-07-05 23:32:11
在一些工程中我们经常需要访问某些类的静态成员,添加一个友元函数可以达到我们的目的。  #include #include<...

在一些工程中我们经常需要访问某些类的静态成员,添加一个友元函数可以达到我们的目的。 

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


class Student{
private:
string  name; int age; int sore;
public:
Student(string name,int age,int sore)
{
this->name = name;
this->age = age;
this->sore = sore;
} 
friend void Display(Student student);

} ; 


void Display(Student student)
{
cout<<student.name<<"\t"<<student.age<<"\t"<<student.sore<<endl;

}


int main(void)
{
Student a("TOM",13,96);

Display(a);

return 0;
}