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

private继承

时间:2017-04-02 20:04:34      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:prot   int   div   protected   span   turn   return   函数   派生类   

class A
{
    int a;
    int b;
    int fun(){ return a; }
};


class B : private A
{
public:
    void funB()
    {
        int num = fun();//private继承派生类函数 基类为private根本访问不了,能访问protected和public
    }
};

int main()
{
    B b;
    return 0;
}

 

private继承

标签:prot   int   div   protected   span   turn   return   函数   派生类   

原文地址:http://www.cnblogs.com/zzyoucan/p/6659631.html

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