美文网首页
Private c++私有属性继承

Private c++私有属性继承

作者: lcus | 来源:发表于2017-09-15 15:27 被阅读23次
    
    classFather{
    
    public:
    
    Father(){
    
    this->x=10;
    
    this->y=22;
    
    }
    
    private:
    
    intx;
    
    inty;
    
    };
    
    classSon :Father{
    
    public:
    
    inta;
    
    intb;
    
    };
    
    //Son son;
    
    //son.a =5;
    
    //son.b =6;
    
    //int *p =(int *)&son;
    
    //printf("%d,%d,%d,%d \n",p[0],p[1],p[2],p[3]);
    
    

    相关文章

      网友评论

          本文标题:Private c++私有属性继承

          本文链接:https://www.haomeiwen.com/subject/wxossxtx.html