#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: protected Animal
{
public:
Giraffe() {}
void StrechNeck()
{
cout << "Strech neck \n";
}
void take()
{
eat(); // _正确,在基类中的属性为公有的,且继承方式为受保护的,派生类可以访问
drink(); // 错误,在基类中的属性为私有的,派生类不能访问基类的私有函数
play(); // 正确,在基类中的属性为受保护的,且继承方式为受保护的,派生类可以访问
}
};
int main()
{
Giraffe gir;
gir.eat(); // 错误,继承方式为受保护的,类内可以调用,类外不能调用
gir.play(); // _错误,继承方式为受保护的,类内可以调用,类外不能调用
gir.drink(); // 错误,在基类中的属性为私有的,派生类不能访问基类的私有函数且继承方式为受保护的,类内可以调用,类外不能调用
return 0;
}
第二学期第12周项目1--长颈鹿类对动物类的继承
最新推荐文章于 2016-06-14 11:55:21 发布