友元函数

Posted zhuh102

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了友元函数相关的知识,希望对你有一定的参考价值。

// 友元函数.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
class Student{
public:
Student(int x,int y){
this->x=x;
this->y=y;//好像用this的时候只能用指针的方式去引用类的成员
}
private :
int x;
int y;
friend void print(const Student& stu);
};
void print(const Student& stu){//由于友元函数不是类的成员函数,所以在定义友元方法时按照普通的方法去定义,不用写成类名::方法名的形式
printf("%d\n",stu.x);
printf("%d\n",stu.y);
}


int main(int argc, char* argv[])
{
Student stu(5,6);
print(stu);

printf("Hello World!\n");
return 0;
}

//注意:友元函

以上是关于友元函数的主要内容,如果未能解决你的问题,请参考以下文章

友元函数友元类.

友元函数和友元类

友元函数

C++中,啥叫友元函数?啥叫友元类?请举例说明。

友元相关

友元函数有啥作用,它主要用在哪些情况下?