pure virtual function

#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这样的语言中有的)
  • 这正是多态性的一种体现
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值