首页 > 代码库 > 友元类
友元类
#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;
}
友元类
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。