友元类
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 struct node_s1;
};
struct node_s1 {
private:
int a;
int b;
public:
node_s1(int a, int b)
{
this->a = a;
this->b = b;
}
void print(node_s &node)
{
printf("node: node.x: %d, node.y: %d\n", node.x, node.y);
}
};
int main(int argc, char* argv[])
{
node_s node(1, 2);
node_s1 node1(3, 4);
node1.print(node);
getchar();
return 0;
}
以上是关于友元类的主要内容,如果未能解决你的问题,请参考以下文章