策略模式

作者:追风剑情 发布于:2016-6-5 14:55 分类:设计模式

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace StrategyTest
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. Context context = new Context(new StrategyA());
  13. context.operate();
  14.  
  15. context = new Context(new StrategyB());
  16. context.operate();
  17.  
  18. context = new Context(new StrategyC());
  19. context.operate();
  20.  
  21. Console.Read();
  22. }
  23. }
  24.  
  25. interface IStrategy
  26. {
  27. void operate();
  28. }
  29.  
  30. class StrategyA : IStrategy
  31. {
  32. public void operate()
  33. {
  34. Console.WriteLine("执行策略A");
  35. }
  36. }
  37.  
  38. class StrategyB : IStrategy
  39. {
  40. public void operate()
  41. {
  42. Console.WriteLine("执行策略B");
  43. }
  44. }
  45.  
  46. class StrategyC : IStrategy
  47. {
  48. public void operate()
  49. {
  50. Console.WriteLine("执行策略C");
  51. }
  52. }
  53.  
  54. class Context
  55. {
  56. private IStrategy strategy;
  57.  
  58. public Context(IStrategy strategy)
  59. {
  60. this.strategy = strategy;
  61. }
  62.  
  63. public void operate()
  64. {
  65. strategy.operate();
  66. }
  67. }
  68. }

运行效果

11111.jpg

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号