zoukankan      html  css  js  c++  java
  • 设计模式(十五):解释器模式

    一、定义

    在设定环境中,定义一种规则或者语法,通过解释器来解释规则或者语法的含义.

    二、实例:将  二十一    —>    21

    2.1 设定我们的环境 Context

     public class Context
        {
            public string Input { get; set; }
            public int Output { get; set; }
        }

    2.2 根据语法来解释

    抽象解释器:

     public abstract class Interpreter
        {
            public string FlagStr { get; set; }
            public int Num { get; set; }
            public abstract int Interpret(Context context);
        }

    具体解释:

    二=2

      public class Two : Interpreter
        {
            public Two()
            {
                FlagStr = "";
                Num = 2;
            }
    
            public override int Interpret(Context context)
            {
                return Num;
            }
        }

    一=1

     public class One : Interpreter
        {
            public One()
            {
                FlagStr = "";
                Num = 1;
            }
    
            public override int Interpret(Context context)
            {
                return Num;
            }
        }

    十=*10

     public class Tenfold : Interpreter
        {
            public Tenfold()
            {
                FlagStr = "";
                Num = 10;
            }
            public override int Interpret(Context context)
            {
                return context.Output*Num;
            }
        }

    再封装一下:

     public class InterpretPrivoder
        {
            public int FormatStr(Context context)
            {
                foreach (char c in context.Input)
                {
                    switch (c)
                    {
                        case '': context.Output += new One().Interpret(context); break;
                        case '': context.Output += new Two().Interpret(context); break;
                        case '': context.Output = new Tenfold().Interpret(context); break;
                    }
                }
                return context.Output;
            }
        }

    其中,未结束符为二和一,结束符为十

    客户端:

     //------------------------解释器模式-----------------------
                Interpreter.Context interpretContext = new Interpreter.Context();
                interpretContext.Input = "二十一";
                Interpreter.InterpretPrivoder interpreter = new Interpreter.InterpretPrivoder();
                interpreter.FormatStr(interpretContext);
                Console.WriteLine(interpretContext.Output);
                Console.ReadKey();

    结果:

    三、总结

    解释器模式,实在一种模式经常出现,并不断变化。我们可以使用解释器。

    缺点就是容易子类膨胀

  • 相关阅读:
    hdu 4801模拟题
    ASP.NET程序中动态修改web.config中的设置项目(后台CS代码)
    缓存依赖语句
    ajax post提交数据, input type=submit 返回prompt aborted by user
    JQuery Ajax调用asp.net后台方法
    ASP.NET Cache
    c#字符串及数组操作
    C#字符串与char数组互转!
    c# equals与==的区别
    如何将DataTable转换成List<T>呢?
  • 原文地址:https://www.cnblogs.com/sunchong/p/5133911.html
Copyright © 2011-2022 走看看