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

友元函数

时间:2017-04-26 22:59:49      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:nbsp   private   har   get   友元函数   getchar   []   ret   std   

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

友元函数

标签:nbsp   private   har   get   友元函数   getchar   []   ret   std   

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

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