友元函数
Posted roadmap
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了友元函数相关的知识,希望对你有一定的参考价值。
#include <stdio.h>
struct node_s {
private:
int x;
int y;
public:
node_s(int x, int y)
{
this->x = x;
this->y = y;
}
friend void print(node_s &p);
};
void print(node_s &p)
{
printf("p.x: %d, p.y: %d\n", p.x, p.y);
}
int main(int argc, char* argv[])
{
node_s node(1, 2);
print(node);
getchar();
return 0;
}
以上是关于友元函数的主要内容,如果未能解决你的问题,请参考以下文章