Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 380 Bytes

029-纯虚函数.md

File metadata and controls

18 lines (12 loc) · 380 Bytes

029-纯虚函数

纯虚函数本质上与Java的抽象方法相同

c++中没有interface关键字,接口也是使用类来定义的

将上一章的虚函数修改为纯虚函数,如下

class Entity {
public:
    virtual std::string getName() = 0;
};

https://www.bilibili.com/video/BV1UK411u7Cr