首页 > 代码库 > 设计模式之模板模式 template
设计模式之模板模式 template
设计模式 模板模式
如果有一个流程如下
step1();
step2();
step3();
step4();
step5();
其中step3() step5()是需要用户自己编写使用
其他步骤是固定的
那么可以写成
// 11111.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include <iostream>#include <memory>using namespace std;class Lib {public: void libstep1() { std::cout << "step1" << std::endl; } void libstep2() { std::cout << "step2" << std::endl; } void libstep4() { std::cout << "step4" << std::endl; } virtual void userstep3() = 0; virtual void userstep5() = 0; void run() { libstep1(); libstep2(); userstep3(); libstep4(); userstep5(); }
virtual ~Lib() {};};class User :public Lib {public: void userstep3() { std::cout << "step3" << std::endl; } void userstep5() { std::cout << "step5" << std::endl; }};int main(){ User u; u.run(); Lib* l = new User(); l->run(); delete l; shared_ptr<Lib> sl(new User()); sl->run(); return 0;}
设计模式之模板模式 template
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。