设计模式之模板模式
public class Main {public static void main(String[] args) {//考个历史吧HistoryExamination historyExamination = new HistoryExamination();historyExamination.templatMethod();System.out.println("--------------------");//考个数学吧,老师有话说哟MathExamination mathExamination = new MathExamination();mathExamination.hook=true;mathExamination.templatMethod();}}
?
结果:
?
?分发历史试卷
做历史试卷
上交历史试卷
--------------------
分发数学试卷
好好做题不要抄
做数学试卷
上交数学试卷
?
参考源文档 <http://blog.csdn.net/s464036801/article/details/8468926> ,此处致谢
?
?
?
?
?
?