C++ 模板方法

本文参考:

本文参考2:

/*
	模版设计模式:定义一个操作中的算法框架,具体的算法细节在子类中实现。
	模版方法使得子类可以不改变一个算法的结构即可重定义算法的某些特定的步骤
	Created by Phoenix_FuliMa
*/
#include <iostream>
using namespace  std;

class TemplateMethod
{
public:
	virtual void step_1() {}
	virtual void step_2() {}

	void templatmethod()
	{
		step_1();
		step_2();
		cout<<"algorithm end!"<<endl;
	}
};

class TemplateMethod1:public TemplateMethod
{
public:
	void step_1()
	{
		cout<<"method 1 step_1"<<endl;
	}
	void step_2()
	{
		cout<<"method 1 step_2"<<endl;
	}
};

class TemplateMethod2:public TemplateMethod
{
public:
	void step_1()
	{
		cout<<"method 2 step_1"<<endl;
	}
	void step_2()
	{
		cout<<"method 2 step_2"<<endl;
	}
};

int main()
{
	TemplateMethod1 *method1 = new TemplateMethod1();
	TemplateMethod2 *method2 = new TemplateMethod2();

	method1->templatmethod();
	method2->templatmethod();

	system("pause");
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值