码迷,mamicode.com
首页 > 其他好文 > 详细

行为型设计模式之策略模式

时间:2015-07-17 09:32:12      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

结构 技术分享
意图 定义一系列的算法,把它们一个个封装起来, 并且使它们可相互替换。本模式使得算法可独立于使用它的客户而变化。
适用性
  • 许多相关的类仅仅是行为有异。“策略”提供了一种用多个行为中的一个行为来配置一个类的方法。
  • 需要使用一个算法的不同变体。例如,你可能会定义一些反映不同的空间/时间权衡的算法。当这些变体实现为一个算法的类层次时[ H O 8 7 ] ,可以使用策略模式。
  • 算法使用客户不应该知道的数据。可使用策略模式以避免暴露复杂的、与算法相关的数据结构。
  • 一个类定义了多种行为, 并且这些行为在这个类的操作中以多个条件语句的形式出现。将相关的条件分支移入它们各自的S t r a t e g y 类中以代替这些条件语句。

 

技术分享
 1 using System;
 2 
 3     
 4     abstract class Strategy 
 5     {
 6         abstract public void DoAlgorithm();
 7     }
 8 
 9     class FirstStrategy : Strategy 
10     {
11         override public void DoAlgorithm()
12         {
13             Console.WriteLine("In first strategy");            
14         }
15     }
16 
17     class SecondStrategy : Strategy 
18     {
19         override public void DoAlgorithm()
20         {
21             Console.WriteLine("In second strategy");            
22         }
23     }
24 
25     class Context 
26     {
27         Strategy s;
28         public Context(Strategy strat)
29         {
30             s = strat;            
31         }
32 
33         public void DoWork()
34         {
35             // some of the context‘s own code goes here
36         }
37 
38         public void DoStrategyWork()
39         {
40             // now we can hand off to the strategy to do some 
41             // more work
42             s.DoAlgorithm();
43         }
44     }
45 
46     /// <summary>
47     ///    Summary description for Client.
48     /// </summary>
49     public class Client
50     {
51         public static int Main(string[] args)
52         {    
53             FirstStrategy firstStrategy = new FirstStrategy();
54             Context c = new Context(firstStrategy);
55             c.DoWork();
56             c.DoStrategyWork();
57 
58             return 0;
59         }
60     }
策略模式

 

行为型设计模式之策略模式

标签:

原文地址:http://www.cnblogs.com/ziranquliu/p/4653409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!