设计模式:策略模式

策略模式(Strategy):它定义了算法家族,分别封装起来,让它们这件可以相互替换,此模式让算法的变化,不会影响到使用算法的客户。

复制代码
namespace StrategyDesignPattern
{
    //抽象算法类
    public abstract class Strategy
    {
        //算法方法
        public abstract void AlgorithmInterface();
    }
    //具体算法A
    public class ConcreateStrategyA:Strategy
    {
        //算法A实现方法
        public override void AlgorithmInterface()
        {
            Console.WriteLine("算法A实现");
        }
    }
    //具体算法B
    public class ConcreateStrategyB : Strategy
    {
        //算法A实现方法
        public override void AlgorithmInterface()
        {
            Console.WriteLine("算法B实现");
        }
    }
    //上下文
    public class Context
    {
        Strategy Strategy;
        public Context(Strategy strategy)
        {
            Strategy = strategy;
        }
        //上下文接口
        public void ContextInterface()
        {
            Strategy.AlgorithmInterface();
        }
    }
}
View Code
复制代码

测试代码:

复制代码
        public void StrategyTest()
        {
            Context context;
            context = new Context(new ConcreateStrategyA());
            context.ContextInterface();

            context = new Context(new ConcreateStrategyB());
            context.ContextInterface();
        }
复制代码

 策略与简单工厂结合:

复制代码
        public Context(string type)
        {
            switch(type)
            {
                case "A":
                    Strategy = new ConcreateStrategyA();
                    break;
                case "B":
                    Strategy = new ConcreateStrategyB();
                    break;
            }
        }
复制代码

 

posted @   uptothesky  阅读(186)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示