java设计模式---templateMethod模式

模板模式简单,直接上代码概念。

//测试实现的主体类
public class templateMethod {

    public static void main(String[] args) {
        F f = new C();
        f.method();
    }
}

//抽象父类方法
abstract class F{
    void method(){
        operation1();
        operation2();
    }
    abstract void operation1();
    abstract void operation2();
}


//子类继承父类实现具体的方法,重写模板方法中的方法
class C extends F {

    @Override
    void operation1() {
        System.out.println("操作方法1");
    }

    @Override
    void operation2() {
        System.out.println("操作方法2");
    }
}

模式总结:

模板方法模式的原理
 1、abstract class F 抽象类,类中实现了模板方法method() ,定义了算法的骨架,具体需要子类去实现其抽象方法operation1()、operation2()
 2、class C 实现抽象方法operation1()、operation2(),完成算法中特定子类的步骤

 

 

 

 

 

 

 

 

上一篇:抽象类与抽象方法


下一篇:node 爬虫