码迷,mamicode.com
首页 > 其他好文 > 详细

友元类

时间:2017-04-26 22:57:30      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:getc   public   include   int   nbsp   node   argc   this   oid   

#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;
}

友元类

标签:getc   public   include   int   nbsp   node   argc   this   oid   

原文地址:http://www.cnblogs.com/roadmap99/p/6771405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!