策略模式

Posted nnxud

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了策略模式相关的知识,希望对你有一定的参考价值。

的略模式概述

技术分享图片

问题引入

技术分享图片

解决方案

技术分享图片

代码体现

package com.xnn.strategy;
/**
 * 
 * 类(接口)描述:策略接口,所有的具体策略都得实现这个接口
 * @author xnn
 * 2018年11月4日下午10:31:14
 */
public interface Strategy {

    public double cost(double num);
}

package com.xnn.strategy;
/**
 * 
 * 类(接口)描述:其中的一种策略:统统打八折
 * @author xnn
 * 2018年11月4日下午10:32:24
 */
public class StrategyA implements Strategy{

    public double cost(double num) {
        return num * 0.8;
    }

}

package com.xnn.strategy;
/**
 * 
 * 类(接口)描述:另一种策略:超过两百的减免50元,否则原价付款
 * @author xnn
 * 2018年11月4日下午10:33:16
 */
public class StrategyB implements Strategy {

    public double cost(double num) {
        if(num >= 200) {
            return num - 50;
        }
        return num;
    }

}

package com.xnn.strategy;
/**
 * 
 * 类(接口)描述:环境类:持有一个strategy类的引用
 * @author xnn
 * 2018年11月4日下午10:34:43
 */
public class Context {
    private Strategy strategy;
    
    public Context(Strategy strategy) {
        this.strategy = strategy;
    }
    
    public double cost(double num){
        return this.strategy.cost(num);
    }
    
}

package com.xnn.strategy;

public class MainClass {
    public static void main(String[] args) {
        double num = 200;
        Context context = new Context(new StrategyB());
        double newNum = context.cost(num);
        System.out.println("实际付账" + newNum + "元");
    }
}

所对应的类图:
技术分享图片
运行结果
技术分享图片
由上面的例子可以看出——策略模式有三个角色:
1、环境角色(Context类),持有一个strategy类的引用
2、抽象策略角色(strategy类)这是一个抽象角色,通常有一个接口或者抽象类实现,此角色给出所有具体策略类所需的接口
3、具体策略角色(StrategyA、StrategyB) 包含了相关的算法和行为

注意:

技术分享图片
技术分享图片

什么时候该用

技术分享图片

优缺点

技术分享图片
技术分享图片










以上是关于策略模式的主要内容,如果未能解决你的问题,请参考以下文章

Redis实现分布式锁(设计模式应用实战)

用于从 cloudkit 检索单列的代码模式/片段

代码片-策略模式+工厂模式

代码片-策略模式+工厂模式

代码片-策略模式+工厂模式

代码片-策略模式+工厂模式