重写基类方法,快速实现基类纯虚方法
基类定义纯虚方法:
class TestBase { public: TestBase(); ~TestBase(); virtual void onBuildAndCompileShader()=0; virtual void onDraw()=0;//加"=0",不必在TestBase.cpp中实现 private: };
在子类的.h文件中,基类名上右键-快速操作和重构-实现基"xxx"的纯虚方法
基类定义纯虚方法:
class TestBase { public: TestBase(); ~TestBase(); virtual void onBuildAndCompileShader()=0; virtual void onDraw()=0;//加"=0",不必在TestBase.cpp中实现 private: };
在子类的.h文件中,基类名上右键-快速操作和重构-实现基"xxx"的纯虚方法