pure virtual function
程序员文章站
2022-04-01 09:57:25
...
#include <iostream>
class Printable //先写一个可以打印,所有类名的interface(即是定义method为virtual function)
{
public:
virtual std::string GetClassName() = 0;
};
//定义一个基类,基类会打印自己的名字
class Entity : public Printable
{
public:
virtual std::string Getname() { return "Entity"; }
//实例化Printable的虚方法
std::string GetClassName() { return "Class:Printable is printing the name of class : Entity"; }
};
//定义继承基类的子类,会打印自己的名字,并覆盖基类打印名字的method
class Player : public Entity
{
private:
std::string _name;
public:
Player(const std::string& name)
: _name(name) {}
std::string Getname() override { return _name; }//这是C11中引入的新特性,加入override可以使程序可读性更好。
//还可以避免拼写错误,要是Getname()中有任何的拼写的问题,都会反映出来
//实例化Printable的虚方法,不同的interface写不同的执行method
std::string GetClassName() { return "Class:Printable is printing the name of class : Player!!!"; }
};
//调用类中的print方法,传入函数的参数是基类指针(类的地址)
void PrintName(Entity* e)
{
std::cout << e->Getname() << std::endl;
}
//验证虚函数的method,打印各类的名称。
void Print(Printable* print)
{
std::cout << print->GetClassName() << std::endl;
}
int main(void)
{
Entity* e = new Entity; //new申请的对象,则只有调用到delete时再会执行析构函数
Print(e);//调用执行interface接口的类method
Player* p = new Player("Veyron!!!");
Print(p);
}
- 在C++中没有interface关键字(在java这样的语言中有的)
- 这正是多态性的一种体现
上一篇: 蓝桥杯CT107D之AT24C02(EEPROM)
下一篇: 详解Java中数组的优缺点
推荐阅读
-
Vue组件中的data必须是一个function的原因浅析
-
Virtual Box的host-only网络,文件共享
-
Windwos7下安装Virtual PC图文教程
-
四种常用虚拟机安装使用教程汇总介绍(VMware/Virtual_PC/Hyper-V/VirtualBox)
-
php function用法如何递归及return和echo区别
-
vbs(asp)下的Function 语句
-
弄了个检测传输的参数是否为数字的Function
-
js init : function ()
-
哪个牌子吸尘器好,添可会思考的智能吸尘器PURE ONE M
-
php判断某个方法是否存在函数function_exists (),method_exists()与is_callable()区别与用法解析