策略模式

Posted kankankankankan

tags:

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

定义一系列算法,将每一个算法封装起来,并让他们可以相互替换。

 

1、定义一个抽象策略类

技术分享图片
/**
 * 定义一个购买球的策略类
 * @author Tim
 *
 */
public interface Ball {

    public double price(double price);
}
View Code

 

2、定义二种具体的策略类

技术分享图片
/**
 * 足球的购买价钱
 * @author Tim
 *
 */
public class FootBall implements Ball{

    public double price(double price) {
        return price * 0.9;
    }

}
View Code
技术分享图片
/**
 * 篮球类
 * @author Tim
 *
 */
public class BasketBall implements Ball{

    public double price(double price) {
        return price * 0.6;
    }

}
View Code

 

3、定义环境类(集成算法的类),采用组合的方式

技术分享图片
/**
 * 定义环境类
 * @author Tim
 *
 */
public class Strategy {

    private Ball ball;

    public Strategy(Ball ball) {
        this.ball = ball;
    }
    
    public double priceBall(double price) {
        return this.ball.price(price);
    }
    
}
View Code

 

4、测试类

技术分享图片
public class StrategyMain {

    public static void main(String[] args) {
        
        Ball ball = new FootBall();
        Strategy strategy = new Strategy(ball);
        System.err.println(strategy.priceBall(18));
    }
}
View Code

 

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

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

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

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

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

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

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