2: 策略模式

2018-01-27  本文已影响0人  Peacenloves

一. 概念

1. 什么是策略模式

2. 策略模式如何实现

1.继承-在父类中提供实现方法,子类通过继承获得父类中的行为

2.抽象方法-在父类中提供抽象方法,强迫子类实现自己的行为

3.组合-策略模式核心

4.注意

3. 策略模式的实现

  1. 通过分离变化得出的策略接口Strategy
  2. Strategy的实现类
  3. 客户程序中有一个Strategy
  4. 在客户程序中选择/组装正确的Strategy实现
策略模式UML类图

4. 策略模式总结篇

  1. 将一些方法抽象成接口
  2. 在基类中实例化接口
  3. 设置接口的私有成员变量
  4. 在积累中调用接口的同样方法
  5. 这样实现了代码的复用
  6. 面向接口编程,而不是面向实现编程,多用组合

5. 适用场景

  1. 许多相关的类仅仅是行为差异
  2. 运行时选取不同的算法遍体
  3. 通过条件语句在多个分支中选取一

二.实例Demo

1.使用策略模式实现超市促销

  1. 需求

    • 原价返回
    • 打折
    • 满减


      促销策略模式UML类图
  1. 策略类(IPromotionStrategy)定义
    /**
     * 促销策略类
     */
    public interface IPromotionStrategy {
    
        /**
         * 计算逻辑
         */
        BigDecimal promotionAlgorithm();
    
        /**
         * 存入价钱
         * @param price
         */
        void setPrice(BigDecimal price);
    }
  1. 根据不同情况实现策略类
    /**
     * 原价
     */
    public class CashNormal implements IPromotionStrategy{
    
        private BigDecimal price;
    
        @Override
        public BigDecimal promotionAlgorithm() {
            //原价返回
            return this.price;
        }
    
        public void setPrice(BigDecimal price) {
            this.price = price;
        }
    }
    
    
    /**
     * 打折
     */
    public class CashRebate implements IPromotionStrategy {
    
        private BigDecimal price = BigDecimal.ZERO;
    
        private BigDecimal rate;
    
        public CashRebate(BigDecimal rate) {
            this.rate = rate;
        }
    
        @Override
        public BigDecimal promotionAlgorithm() {
            //TODO 打折逻辑实现
        }
    
        public void setPrice(BigDecimal price) {
            this.price = price;
        }
    }
    
    
    /**
     * 满减
     */
    public class CashReturn implements IPromotionStrategy {
    
        private BigDecimal price;
    
        private BigDecimal minPrice;
    
        private BigDecimal subPrice;
    
        public CashReturn(BigDecimal minPrice, BigDecimal subPrice) {
            this.minPrice = minPrice;
            this.subPrice = subPrice;
        }
    
        @Override
        public BigDecimal promotionAlgorithm() {
            //TODO 满减逻辑实现
        }
    
        public void setPrice(BigDecimal price) {
            this.price = price;
        }
    }

  1. 创建打折上下文(PromotionContext), 维护使用促销模式
    public class PromotionContext {
    
        /**
         * 策略实现类包
         */
        private static final String PACKAGE_NAME = "org.ko.strategy.promotion";
    
        /**
         * 组合策略类
         */
        private IPromotionStrategy promotionStrategy;
    
        /**
         * 获取促销后价钱
         * @return
         */
        public BigDecimal getPrice () {
            return this.promotionStrategy.promotionAlgorithm();
        }
    
        /**
         * 创建促销手段
         * @param code 对应促销模式编码
         * @param args 对应促销参数
         */
        public void newPromotion (Integer code, Object... args) {
            //根据促销模式编码获取促销模式对应类名称
            String clazz = PromotionType.findClazz(code);
            try {
                //通过反射获取促销模式的对象
                this.promotionStrategy = (IPromotionStrategy)Class.forName(PACKAGE_NAME + "." + clazz)
                        .getDeclaredConstructor(getClasses(args)).newInstance(args);
            } catch (InstantiationException e) {
                e.printStackTrace();
            } catch (IllegalAccessException e) {
                e.printStackTrace();
            } catch (InvocationTargetException e) {
                e.printStackTrace();
            } catch (NoSuchMethodException e) {
                e.printStackTrace();
            } catch (ClassNotFoundException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 设置打折前的价格
         * @param price
         */
        public void setPrice (BigDecimal price) {
            this.promotionStrategy.setPrice(price);
        }
    
        /**
         * 获取Class
         * @param args
         * @return
         */
        private Class[] getClasses (Object... args) {
            Class[] classes = new Class[args.length];
            for (int i = 0; i < args.length; i ++) {
                classes[i] = args[i].getClass();
            }
            return classes;
        }
    
    }
- 这里使用反射维护实例对象, 相关知识这里不再介绍.
  1. 创建枚举维护促销样例
    /**
     * 促销手段样例
     */
    public enum PromotionType {
    
        CashNormal(1, "CashNormal", "原价"),
        CashRebate(2, "CashRebate", "打折"),
        CashReturn(3, "CashReturn", "满减");
    
        private Integer code;
    
        private String clazz;
    
        private String description;
    
        PromotionType(Integer code, String clazz, String description) {
            this.code = code;
            this.clazz = clazz;
            this.description = description;
        }
    
        /**
         * 通过编码获取促销手段
         * @param code 促销手段编码
         * @return
         */
        public static String findClazz(Integer code) {
            for (PromotionType type : PromotionType.values()) {
                if (Objects.equals(code, type.code)) {
                    return type.clazz;
                }
            }
            return null;
        }
    }

  1. 测试
    public static void main(String[] args) {
        //初始化上下文
        PromotionContext context = new PromotionContext();

        //测试无促销
        context.newPromotion(1);
        context.setPrice(new BigDecimal("200"));
        BigDecimal price = context.getPrice();
        System.out.println(price);

        //测试打折
        context.newPromotion(2, new BigDecimal("0.8"));
        context.setPrice(new BigDecimal("200"));
        price = context.getPrice();
        System.out.println(price);

        //测试满减
        context.newPromotion(3, new BigDecimal("300"), new BigDecimal("100"));
        context.setPrice(new BigDecimal("200"));
        price = context.getPrice();
        System.out.println(price);
        context.setPrice(new BigDecimal("300"));
        price = context.getPrice();
        System.out.println(price);

    }

三. Demo

GitHub: 策略模式

上一篇下一篇

猜你喜欢

热点阅读