模板设计模式是定义一个操作中算法的骨架,将一些步骤的操作延迟到其子类中。
abstract class Benchmark
{
/**
* 下面操作我们希望在子类中完成
*/
public abstract void benchmark();
/**
* 重复执行benchmarkde 的次数
*/
public final long repeat(int count){
if(count<=0)
return 0;
else
{
long startTime=System.currentTimeMillis();
for(int i=0;i<count;i++)
benchmark();
long stopTime=System.currentTimeMillis();
return stopTime-startTime;
}
}
}
这样使用抽象类增强了程序的可扩展性,以后Benchmark内容变化,只要做一个继承子类就可以,不必修改其他代码,repeat方法称为模板方法。
|