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

多重继承--判断

时间:2014-05-14 15:00:46      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   c   int   a   

/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 作    者:马广明
* 完成日期:2014 年 5 月 13 日
* 问题介绍: 继承的判断
* 版 本 号:v1.0
*/
#include <iostream>
using namespace std;
class Animal    //动物类
{
public:
    Animal() {}
    void eat(){
        cout << "eat\n";
    }
protected:
    void play()
    {
        cout << "play\n";
    }
private:
    void drink()
    {
        cout << "drink\n";
    }
};
class Giraffe: public Animal   //长颈鹿类
{
public:
    Giraffe() {}
    void StrechNeck()
    {
        cout << "Strech neck \n";
    }
private:
    void take()
    {
        eat();        // 正确,公有继承下,基类的公有成员对派生类可见
        drink();      // 正确,公有继承下,基类的保护成员对派生类可见
        play();       // 不正确,公有继承下,基类的私有成员对派生类不可见
    }
};
int main()
{
    Giraffe gir;      //定义派生类的对象
    gir.eat();        // 正确,公有继承下,基类的公有成员对mian函数可见
    gir.play();       // 不正确,保护成员对mian函数不可见
    gir.drink();      // 不正确,私有成员对mian函数不可见
    gir.take();       // 不正确,私有成员对mian函数不可见
    gir.StrechNeck(); // 正确,公有成员对mian函数可见
    Animal ani;
    ani.eat();        // 正确,基类的公有函数对mian函数可见
    ani.play();       // 不正确,保护成员对mian函数不可见
    ani.drink();      // 不正确,私有成员对mian函数不可见
    ani.take();       //错误,派生类的成员对基类对象(不论访问属性)不可见
    ani.StrechNeck(); //  错误,派生类的成员对基类对象(不论访问属性)不可见
    return 0;
}

多重继承--判断,布布扣,bubuko.com

多重继承--判断

标签:blog   class   code   c   int   a   

原文地址:http://blog.csdn.net/u012369134/article/details/25693115

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