设计模式-策略模式C#版

简介:

设计模式-策略模式C#版

策略模式是一种常见和常用的设计模式,策略的独立和抽象。

常见的场景就是电子商务中的打折策略。可以随着用户类型的不同,打折的策略也不同。

或者是游戏中打怪场景,怪的掉血策略,随着自己的级别,装备不同,怪的掉血不同。

今天的列子是打折策略,根据用户类型不同,打折策略不同。

需要在金额上做不同的打折策略,所以就在金额上留下一个口子,一个接口,传入不同的策略实现,每种实现都针对金额打不同的折扣。

 

 
  1. using System; 
  2. using System.Collections.Generic; 
  3. using System.Linq; 
  4. using System.Text; 
  5.  
  6. namespace DomainModel.Model 
  7.     /// <summary> 
  8.     /// 打折策略 
  9.     /// </summary> 
  10.     public interface IDiscountStrategy 
  11.     { 
  12.         decimal Apply(decimal originalPrice); 
  13.     } 
  14.  
  15.     public class Price 
  16.     { 
  17.         private IDiscountStrategy _discountStrategy; 
  18.         private decimal _salePrice; 
  19.  
  20.         public Price(decimal salePrice, IDiscountStrategy discountStrategy) 
  21.         { 
  22.             this._salePrice = salePrice; 
  23.             this._discountStrategy = discountStrategy; 
  24.         } 
  25.         /// <summary> 
  26.         /// 应用策略 
  27.         /// </summary> 
  28.         /// <param name="discountStrategy"></param> 
  29.         public void SetDiscountStrategy(IDiscountStrategy discountStrategy) 
  30.         { 
  31.             this._discountStrategy = discountStrategy; 
  32.         } 
  33.         /// <summary> 
  34.         /// 返回打折后的价格 
  35.         /// </summary> 
  36.         public decimal SalePrice 
  37.         { 
  38.  
  39.             get 
  40.             { 
  41.                 return this._discountStrategy.Apply(this._salePrice); 
  42.             } 
  43.         } 
  44.  
  45.     } 
  46.  
  47.     public class Product 
  48.     { 
  49.  
  50.         public int Id { getset; } 
  51.  
  52.         public string Name { getset; } 
  53.  
  54.         public Price Price { getset; } 
  55.     } 
  56.     public enum CustomerType 
  57.     { 
  58.         /// <summary> 
  59.         ///  不打折
  60.         /// </summary> 
  61.         General = 0, 
  62.         /// <summary> 
  63.         ///  6折
  64.         /// </summary> 
  65.         Trade = 1 
  66.     } 
  67.     public class NullDiscountStrategy : IDiscountStrategy 
  68.     { 
  69.  
  70.         public decimal Apply(decimal originalPrice) 
  71.         { 
  72.             return originalPrice; 
  73.         } 
  74.     } 
  75.     public class TradeDiscountStrategy : IDiscountStrategy 
  76.     { 
  77.         public decimal Apply(decimal originalPrice) 
  78.         { 
  79.             return originalPrice * 0.6m; 
  80.         } 
  81.     } 
  82.     /// <summary> 
  83.     /// 折扣策略工厂 
  84.     /// </summary> 
  85.     public sealed class DiscountStrategyFactory 
  86.     { 
  87.  
  88.         public static IDiscountStrategy GetDiscountStrategy(CustomerType customerType) 
  89.         { 
  90.             switch (customerType) 
  91.             { 
  92.                 case CustomerType.General: 
  93.                     return new NullDiscountStrategy(); 
  94.                 default
  95.                     return new TradeDiscountStrategy(); 
  96.             } 
  97.         } 
  98.     } 
  99.     public interface IProductRepository 
  100.     { 
  101.         IList<Product> Find(); 
  102.     } 
  103.  
  104.     public static class ProductListExtensions 
  105.     { 
  106.         public static void ApplyDiscount(this IList<Product> products, IDiscountStrategy discountStrategy) 
  107.         { 
  108.             foreach (var p in products) 
  109.             { 
  110.                 p.Price.SetDiscountStrategy(discountStrategy); 
  111.             } 
  112.         } 
  113.     } 
  114.  
  115.     public class ProductRepository:IProductRepository  
  116.     { 
  117.         public IList<Product> Find() 
  118.         { 
  119.             return new List<Product>(); 
  120.         } 
  121.     } 
  122.     public class ProductService 
  123.     { 
  124.         private IProductRepository _productRepository; 
  125.         public ProductService() 
  126.         { 
  127.             this._productRepository = new ProductRepository(); 
  128.         } 
  129.         public ProductService(IProductRepository productRepository) 
  130.         { 
  131.             this._productRepository = productRepository; 
  132.         } 
  133.  
  134.         public IList<Product> Find(CustomerType customerType) 
  135.         { 
  136.             var discountStrategy = DiscountStrategyFactory.GetDiscountStrategy(customerType); 
  137.             var products = this._productRepository.Find(); 
  138.             products.ApplyDiscount(discountStrategy); 
  139.             return products; 
  140.         } 
  141.     } 
  142.  
  143.     public class Client 
  144.     { 
  145.         private CustomerType _customerType = CustomerType.Trade; 
  146.          
  147.         public void FindProducts() 
  148.         { 
  149.             var service = new ProductService(); 
  150.             var products = service.Find(this._customerType); 
  151.         } 
  152.     } 

 

 

参考文献

1.走向.NET架构设计—第三章—分层设计,初涉架构(中篇)

 

 




本文转自 virusswb 51CTO博客,原文链接http://blog.51cto.com/virusswb/1020660,如需转载请自行联系原作者

目录
相关文章
|
2月前
|
设计模式 算法 测试技术
PHP中的设计模式:策略模式的应用与实践
在软件开发的浩瀚海洋中,设计模式如同灯塔,指引着开发者们避开重复造轮子的暗礁,驶向高效、可维护的代码彼岸。今天,我们将聚焦于PHP领域中的一种重要设计模式——策略模式,探讨其原理、应用及最佳实践,揭示如何通过策略模式赋予PHP应用灵活多变的业务逻辑处理能力,让代码之美在策略的变换中熠熠生辉。
|
11天前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
35 2
|
28天前
|
设计模式 算法 C#
C# 一分钟浅谈:策略模式与状态模式
【10月更文挑战第13天】本文介绍了两种常见的行为型设计模式:策略模式和状态模式。策略模式通过封装一系列算法并使其可互换,实现算法的灵活变化;状态模式则通过改变对象的内部状态来改变其行为。文章通过C#代码示例详细说明了这两种模式的应用场景、常见问题及解决方法。
52 19
|
1月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
本教程详细讲解Kotlin语法,适合深入学习。快速入门可参考“简洁”系列教程。本文通过游泳运动员的案例,介绍策略模式及其在Kotlin中的改良应用,利用高阶函数简化代码结构,提高灵活性。
30 3
|
1月前
|
设计模式 安全 Java
C# 一分钟浅谈:设计模式之单例模式
【10月更文挑战第9天】单例模式是软件开发中最常用的设计模式之一,旨在确保一个类只有一个实例,并提供一个全局访问点。本文介绍了单例模式的基本概念、实现方式(包括饿汉式、懒汉式和使用 `Lazy&lt;T&gt;` 的方法)、常见问题(如多线程和序列化问题)及其解决方案,并通过代码示例详细说明了这些内容。希望本文能帮助你在实际开发中更好地应用单例模式,提高代码质量和可维护性。
29 1
|
1月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
本教程详细讲解Kotlin语法,适合深入学习。快速入门可参考“简洁”系列教程。本文介绍策略模式在Kotlin中的应用,通过游泳运动员的例子,展示如何使用接口和高阶函数实现策略模式,使代码更简洁、灵活。
28 2
|
1月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
61 3
|
1月前
|
设计模式 算法 Kotlin
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
Kotlin教程笔记(53) - 改良设计模式 - 策略模式
27 3
|
1月前
|
设计模式 算法 PHP
PHP中的设计模式:策略模式的深入解析与实践
【10月更文挑战第9天】 策略模式是一种行为设计模式,它允许在运行时选择算法的行为。在PHP开发中,通过使用策略模式,我们可以轻松切换算法或逻辑处理方式而无需修改现有代码结构。本文将深入探讨策略模式的定义、结构以及如何在PHP中实现该模式,并通过实际案例展示其应用价值和优势。
28 1
|
1月前
|
设计模式 算法 PHP
PHP中的设计模式:策略模式的深入解析与应用
【10月更文挑战第8天】 在软件开发的浩瀚宇宙中,设计模式如同星辰指引,照亮了代码设计与架构的航道。本文旨在深入探索PHP语境下策略模式(Strategy Pattern)的精髓,不仅剖析其内核原理,还将其融入实战演练,让理论在实践中生根发芽。策略模式,作为解决“如何优雅地封装算法族”的答案,以其独特的灵活性与扩展性,赋予PHP应用以动态变换行为的能力,而无需牵动既有的类结构。
24 2