极速理解设计模式系列:8.策略模式(Strategy Pattern)

四个角色:抽象策略类(Strategy)、具体策略类(ConcreteStrategy)、场景角色(Context)、客户端(Client) 

        抽象策略类(Strategy):接口提供动作让场景角色Context调用各种具体策略类的算法。

        具体策略类(ConcreteStrategy):实现各种不同的策略算法

        场景角色(Context):使用Strategy的引用实例配置场景,并且提供一个接口获取结果。

        客户端(Client) :将具体策略类代入场景角色以计算出结果

 实现思路:多个具体策略类多种方式达到目的,Context场景角色中去让客户端选择具体策略类使用。这样在客户端即可非常方便的实现多种策略得到结果。

 类图:

极速理解设计模式系列:8.策略模式(Strategy Pattern)

应用场景:某销售部门,其内部员工可以8折购买货物,大客户7.5折,小客户9折购买。

分析:根据不同的客户,选择不同的计算方法,计算出打折之后的价格。

        下面我们在控制台程序去演示一下如何使用Strategy Pattern:

        一、 抽象策略类(Strategy)

 


  1. //策略类 
  2. abstract class PriceStrategy 
  3.     abstract public double GetPrice(double price); 

        二、具体策略类(ConcreteStrategy)

 


  1. //具体策略(员工价格策略) 
  2. class StaffPriceStrategy : PriceStrategy 
  3.     public override double GetPrice(double price) 
  4.     { 
  5.         return price * 0.8; 
  6.     } 
  7. //具体策略(大客户价格策略) 
  8. class BigCustomerPriceStrategy : PriceStrategy 
  9.     public override double GetPrice(double price) 
  10.     { 
  11.         return price * 0.75; 
  12.     } 
  13. //具体策略(小客户价格策略) 
  14. class SmallCustomerPriceStrategy : PriceStrategy 
  15.     public override double GetPrice(double price) 
  16.     { 
  17.         return price * 0.9; 
  18.     } 
  19. //具体策略(原价策略) 
  20. class OrigPriceStrategy : PriceStrategy 
  21.     public override double GetPrice(double price) 
  22.     { 
  23.         return price; 
  24.     } 

        三、场景角色(Context)

 


  1. class CalculationContext 
  2.     PriceStrategy priceStrategy; 
  3.     public void SetStrategy(PriceStrategy priceStrg) 
  4.     { 
  5.         priceStrategy = priceStrg; 
  6.     } 
  7.     public double GetTotalPrice(double price) 
  8.     { 
  9.         return priceStrategy.GetPrice(price); 
  10.     } 

        四、客户端(Client) 

 


  1. class Program 
  2.  { 
  3.      static void Main(string[] args) 
  4.      { 
  5.          //未打折需付款1000元 
  6.          double totalPrice = 1000.0; 
  7.  
  8.          CalculationContext calculate = new CalculationContext(); 
  9.          //计算出员工打折价 
  10.          calculate.SetStrategy(new StaffPriceStrategy()); 
  11.          double staffPrice= calculate.GetTotalPrice(totalPrice); 
  12.  
  13.          //计算出大客户打折价 
  14.          calculate.SetStrategy(new BigCustomerPriceStrategy()); 
  15.          double bigCustomerPrice = calculate.GetTotalPrice(totalPrice); 
  16.  
  17.          //计算出小客户打折价 
  18.          calculate.SetStrategy(new SmallCustomerPriceStrategy()); 
  19.          double smallCustomerPrice = calculate.GetTotalPrice(totalPrice); 
  20.           
  21.          //计算出原价 
  22.  
  23.          calculate.SetStrategy(new OrigPriceStrategy()); 
  24.          double origPrice = calculate.GetTotalPrice(totalPrice); 
  25.  
  26.          Console.WriteLine(string.Format("员工打折价{0}元,大客户打折价{1}元,小客户打折价{2}元,原价{3}元"
  27.              staffPrice, bigCustomerPrice, smallCustomerPrice, origPrice)); 
  28.          Console.ReadLine(); 
  29.      } 
  30.  } 

        如需源码请点击 StrategyPattern.rar  下载。



本文转自程兴亮 51CTO博客,原文链接:http://blog.51cto.com/chengxingliang/826990

上一篇:怎样在IDE的Macro中使用剪贴板功能


下一篇:LVS负载均衡之session解决方案