模板设计模式的引入,可以使我们不用去更改main()的主框架,只需要重写code 方法即可。
package com.heima.设计模式;
public class Demo1_Template {
/**
* @param args
* d.getTime()虽然没有被重写(但是子类却继承了)
*/
public static void main(String[] args) {Demo d = new Demo();
System.out.println(d.getTime());
}}
abstract class GetTime {
public final long getTime() { //final 就是为了不让重写
long start = System.currentTimeMillis();
code();
long end = System.currentTimeMillis();
return end - start;
}public abstract void code(); //抽象方法
}
/*
* Demo继承了抽象类(必须重写抽象类的方法)
* 抽象方法就是为了子类进行重写* Final关键字修饰的方法不能被重写
*/
class Demo extends GetTime { //抽象方法就是为了子类重写@Override
public void code() {
int i = 0;
while(i < 100000) {
System.out.println("x");
i++;
}
}
}