软件设计模式第一篇(策略模式)

  • Post author:
  • Post category:其他




什么是策略模式

百度解释为

策略模式是指有一定行动内容的相对稳定的策略名称。策略模式在古代中又称“计策”,简称“计”,如《汉书·高帝纪上》:“汉王从其计”。这里的“计”指的就是计谋、策略。策略模式具有相对稳定的形式,如“避实就虚”、“出奇制胜”等。一定的策略模式,既可应用于战略决策,也可应用于战术决策;既可实施于大系统的全局性行动,也可实施于大系统的局部性行动。

对软件领域来说,策略模式作为一种软件设计模式,指对象有某个行为,但是在不同的场景中,该行为有不同的实现算法。比如每个人都要“交个人所得税”,但是“在美国交个人所得税”和“在中国交个人所得税”就有不同的算税方法。


策略模式简介

  1. 定义了一组算法(业务规则);
  2. 封装了每个算法;
  3. 这族的算法可互换代替(interchangeable)


策略模式的组成

  1. —抽象策略角色: 策略类,通常由一个接口或者抽象类实现。
  2. —具体策略角色:包装了相关的算法和行为。
  3. —环境角色:持有一个策略类的引用,最终给客户端调用。



业务场景

现在,我们要开发一个支付业务,需要对接微信,支付宝,银联,京东等支付聚道,使用平时的方式如下


  • 支付枚举类


    支付的枚举类
package com.hospital.hospital.Test;

import lombok.Getter;
import lombok.Setter;

/**
 * @Author: dengcs
 * @Date: 2020/6/22 11:16
 * Comment:支付枚举
 */

@Getter
public enum  PayNum {
   
    WECHAT_PLAY("wechat","微信"),
    ALI_PLAY("zli","支付宝"),
    UNION_PLAY("union","银联"),
    JD_PLAY("jd","京东");

    private String channel;//支付聚道
    private String description;//支付描述


    PayNum(String channel, String description) {
   
        this.channel = channel;
        this.description = description;
    }

}

  • 支付接口


    编写支付接口
package com.hospital.hospital.Test;

/**
 * @Author: dengcs
 * @Date: 2020/6/22 11:24
 * Comment:支付接口
 */
public interface PayService {
   
    public String pay(String channel, String amount);
}


– 支付实现(if else)

使用if else实现

package com.hospital.hospital.Test;

import org.springframework.stereotype.Service;

/**
 * @Author: dengcs
 * @Date: 2020/6/22 14:07
 * Comment:传统支付接口实现类
 */
@Service
public class PayServiceImpl implements PayService {
   
    private static String  MSG = "您使用 %s, 支付了 %s";
    @Override
    public String pay(String channel, String amount) {
   
        if (PayNum.ALI_PLAY.getChannel().equals(channel)) {
   
            //todo 支付宝支付
            return String.format(MSG,PayNum.ALI_PLAY.getDescription(),amount);
        }else if(PayNum.WECHAT_PLAY.getChannel().equals(channel)){
   
            //todo 微信支付
            return String.format(MSG,PayNum.WECHAT_PLAY.getDescription(),amount);
        }



版权声明:本文为weixin_39098944原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。