码迷,mamicode.com
首页 > 编程语言 > 详细

【C++】纯虚函数的简单应用。

时间:2015-05-15 09:12:47      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:纯虚函数   虚函数   c++      派生   

//纯虚函数的简单应用。
#include<iostream>
using namespace std;
class A
{
public:
	virtual void Eat() = 0;
	virtual void Sleep() = 0;
	virtual void Foot() = 0;
};

class P : public A
{
public:
	void Eat()
	{
		cout<<"P::Eat()"<<endl;
	}
	void Sleep()
	{
		cout<<"P::Sleep()"<<endl;
	}
	void Foot()
	{
		cout<<"P::Foot()"<<endl;
	}
};

class B : public A
{
public:
	void Eat()
	{
		cout<<"B::Eat()"<<endl;
	}
	void Sleep()
	{
		cout<<"B::Sleep()"<<endl;
	}
	void Foot()
	{
		cout<<"B::Foot()"<<endl;
	}
	virtual void Fly() = 0;
};

class T : public B
{
public:
private:
	void Fly()
	{}
};

void main()
{
	P p;
	p.Eat();
	p.Foot();
	p.Sleep();
	T t;
	t.Eat();
	t.Foot();
//	t.Fly();   //在T中,Fly属于私有,不能实现
}
<img src="http://img.blog.csdn.net/20150514215629063?watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvZG91ZG91d2ExMjM0/font/5a6L5L2T/fontsize/400/fill/I0JBQkFCMA==/dissolve/70/gravity/Center" alt="" />


【C++】纯虚函数的简单应用。

标签:纯虚函数   虚函数   c++      派生   

原文地址:http://blog.csdn.net/doudouwa1234/article/details/45726781

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