Android设计模式之策略模式详解

Android设计模式之策略模式详解,第1张

概述策略模式一个功能的效果,有不同的算法与策略,根据不同的选择选择不同的结果。

策略模式

一个功能的效果,有不同的算法与策略,根据不同的选择选择不同的结果。

简单来说,只要你写过程序就用过策略模式,不要说没用过,难道if-else(switch)没用过吗…..

if-else在其实就是一个策略模式的体现,根据不同的选择处理不同的结果。

问题

如果把所有的方法全部用if-else(switch)来处理,从功能上说没问题,但是冲代码层面的维护与使用来说,if-else多了之后会让类变的过于庞大,阅读不利,修改困难

解决问题

使用策略模式,定义统一接口,每一个不同的功能(if-else)实现接口做一个具体类,外部调用具体类来达到不同的结果。

使用场景

同一个问题,有不同的解决方案
一个类有多个if-else的判断处理结果
封装SDK时上层处理结果返回的情况,调用者关心结果,不关注实现过程
列入AndroID源码中的动画的TimeInterpolator,ListVIEw的适配器

代码实现

有一个商品售卖,在售卖过程中,要根据不同的用户给予不同的价格(半价,8折,7折等等),在知道用户的前提下,如何直接给予价格呢?

(一)价格接口的实现

public interface PriceStrategy { int setPrice(int price);}

(二)实现具体的价格类

7折:

public class seventPriceStrategy implements PriceStrategy { @OverrIDe public Double setPrice(int price) {  return 0.7 * price; }}

5折:

public class HalfPriceStrategy implements PriceStrategy { @OverrIDe public Double setPrice(int price) { return 0.5 * price; }}

(三)价格算法管理类

public class PriceAlgorithm { private PriceStrategy priceStrategy; public PriceStrategy getPriceStrategy() { return priceStrategy; } public voID setPriceStrategy(PriceStrategy priceStrategy) { this.priceStrategy = priceStrategy; } public Double getPrice(int price) { if(priceStrategy!=null){  return priceStrategy.setPrice(price); } return null; }}

传入具体的实现类,获取返回接口

(四)调用方式

 PriceAlgorithm priceAlgorithm = new PriceAlgorithm(); priceAlgorithm.setPriceStrategy(new HalfPriceStrategy()); System.out.print("\n" + "1块钱" + "5折后的价格:" + String.valueOf(priceAlgorithm.getPrice(1))); PriceAlgorithm priceAlgorithm2 = new PriceAlgorithm(); priceAlgorithm2.setPriceStrategy(new seventPriceStrategy()); System.out.print("\n" + "2块钱" + "7折后的价格:" + String.valueOf(priceAlgorithm2.getPrice(2)));

(五)显示结果

1块钱5折后的价格:0.5
2块钱7折后的价格:1.4

总结

使用策略模式之后的维护只需要维护具体的实现类,如果有新增的方式,只需要扩展实现具体类即可,便于维护使用。

github代码地址

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的Android设计模式之策略模式详解全部内容,希望文章能够帮你解决Android设计模式之策略模式详解所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144786.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存