Template Method模式和Strategy模式有何异同

Template Method模式很容易理解,就是由基类提供一个模板,将各子类中不变的行为提取到基类中实现,而各子类中可变的行为则由各子类自己重写基类方法实现. 

Strategy则是在使用策略模式的应用实例内部维护一个策略实例,针对不同的子类用不同的策略实现. 



来看看两者的代码实现: 



Template Method模式 -- 基类
  1. package com.dzeay.pattern.template_method;
  2. public class BaseTemplate {
  3. public void doSameThing() {
  4. System.out.println("BaseTemplate.doSameThing");
  5. }
  6. public void doOtherThing() {
  7. System.out.println("BaseTemplate.BaseTemplate");
  8. }
  9. }

Template Method模式 -- 子类A

  1. package com.dzeay.pattern.template_method;
  2. public class AClass extends BaseTemplate {
  3. @Override
  4. public void doOtherThing() {
  5. System.out.println("AClassImpl.doOtherThing");
  6. }
  7. }

Template Method模式 -- 子类B

  1. package com.dzeay.pattern.template_method;
  2. public class BClass extends BaseTemplate {
  3. @Override
  4. public void doOtherThing() {
  5. System.out.println("BClassImpl.doOtherThing");
  6. }
  7. }

Template Method模式 -- 测试类

  1. package com.dzeay.pattern.template_method;
  2. /**
  3. * <pre>
  4. * Template Method(模板方法模式)详解:
  5. * 由基类提供一个模板,将各子类中不变的行为提取到基类中实现,
  6. * 而各子类中可变的行为由各子类自己重写基类方法实现
  7. * </pre>
  8. *
  9. * @author <a href="mailto:dzeay.com@gmail.com">dzeay.com</a>
  10. * @since 2010-11-15
  11. * @version 1.0
  12. */
  13. public class TestClass {
  14. /**
  15. *
  16. * @param args
  17. */
  18. public static void main(String[] args) {
  19. BaseTemplate aClass = new AClass();
  20. aClass.doSameThing();
  21. aClass.doOtherThing();
  22. BaseTemplate bClass = new BClass();
  23. bClass.doSameThing();
  24. bClass.doOtherThing();
  25. }
  26. }

Strategy模式 -- 策略接口

  1. package com.dzeay.pattern.strategy;
  2. public interface IStrategy {
  3. public void doOtherThing();
  4. }

Strategy模式 -- 策略A

  1. package com.dzeay.pattern.strategy;
  2. public class AStrategy implements IStrategy {
  3. @Override
  4. public void doOtherThing() {
  5. System.out.println("AStrategy.doOtherThing");
  6. }
  7. }

Strategy模式 -- 策略B

  1. package com.dzeay.pattern.strategy;
  2. public class BStrategy implements IStrategy {
  3. @Override
  4. public void doOtherThing() {
  5. System.out.println("BStrategy.doOtherThing");
  6. }
  7. }

Strategy模式 -- 应用

  1. package com.dzeay.pattern.strategy;
  2. public class Context {
  3. private IStrategy strategy;
  4. public Context() {
  5. }
  6. public Context(IStrategy strategy) {
  7. this.strategy = strategy;
  8. }
  9. public void doOtherThing() {
  10. this.strategy.doOtherThing();
  11. }
  12. public void setStrategy(IStrategy strategy) {
  13. this.strategy = strategy;
  14. }
  15. }

Strategy模式 -- 测试类

  1. package com.dzeay.pattern.strategy;
  2. /**
  3. * <pre>
  4. * Strategy(策略模式)详解:
  5. * 在使用策略模式的应用实例内部维护一个strategy实例,针对不同的子类用不同的策略实现
  6. * </pre>
  7. *
  8. * @author <a href="mailto:dzeay.com@gmail.com">dzeay.com</a>
  9. * @since 2010-11-15
  10. * @version 1.0
  11. */
  12. public class TestClass {
  13. /**
  14. * @param args
  15. */
  16. public static void main(String[] args) {
  17. Context context = new Context();
  18. context.setStrategy(new AStrategy());
  19. context.doOtherThing();
  20. context.setStrategy(new BStrategy());
  21. context.doOtherThing();
  22. context.setStrategy(new IStrategy() {
  23. @Override
  24. public void doOtherThing() {
  25. System.out.println("doOtherThing");
  26. }
  27. });
  28. context.doOtherThing();
  29. }
  30. }

未完待续 ........

上一篇:mybatis主配置文件SqlMapConfig.xml


下一篇:老李分享:loadrunner 的86401错误