码迷,mamicode.com
首页 > 其他好文 > 详细

设计模式(模板方法)

时间:2015-06-15 12:32:47      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

模板方法是通过抽象类定义各一个基础模板,这个模板中有已经实现的,也有要求强制子类实现的。

通过这个模板的定义来实现有约束的业务继承。代码如下:

  • Template
public abstract class Template {
    public void templateMethod(){
        baseMethod();
        subMehtod();
    }
    
    public void baseMethod(){
        System.out.println("baseMethod");
    }
    
    public abstract void subMehtod();
}
  • ConcreteOne&ConcreteTwo
public class ConcreteOne extends Template {

    @Override
    public void subMehtod() {
        System.out.println("ConcreteOne");
    }
}

public class ConcreteTwo extends Template {

    @Override
    public void subMehtod() {
        System.out.println("ConcreteTwo");
    }
}
  • App 测试类
public class App {

    public static void main(String[] args) {
        Template temp = new ConcreteOne();
        temp.templateMethod();
        temp = new ConcreteTwo();
        temp.templateMethod();
    }
}

 

设计模式(模板方法)

标签:

原文地址:http://www.cnblogs.com/Fredric-2013/p/4576576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!