代码改变世界

状态模式(State Pattern)

  Clingingboy  阅读(854)  评论(0编辑  收藏  举报

意图:允许一个对象在其内部状态改变时改变它的行为。对象看起来似乎修改了它所属的类。

  using System;
   using System.Collections.Generic;
 
    // State Pattern               Judith Bishop  Oct 2007
    // Simple game where the context changes the state based on user input
    // Has four states, each with 6 operations 
    
   interface IState {
     int MoveUp(Context context);
     int MoveDown(Context context);
   }
 
   // State 1
   class NormalState : IState {
     public  int MoveUp(Context context) {
       context.Counter+=2;
       return context.Counter;
     }
 
     public int MoveDown(Context context) {
         if (context.Counter < Context.limit) {
           context.State = new FastState();
           Console.Write("|| ");
         }
         context.Counter-=2;
         return context.Counter;
     }
   }
 
   // State 2
   class FastState : IState {
     public int MoveUp(Context context) {
       context.Counter+=5;
       return context.Counter;
     }
 
     public int MoveDown(Context context) {
        if (context.Counter < Context.limit) {
         context.State = new NormalState();
         Console.Write("||");
       }
       context.Counter-=5;
       return context.Counter;
     }
   }
 
   // Context
   class Context {
     public const int limit = 10;
     public IState State {get; set; }
     public int Counter = limit;
       
     public int Request(int n) {
       if (n==2)
         return State.MoveUp(this);
       else
         return State.MoveDown(this);
     }
   }
    
   static class Program {
      // The user interface
     static void Main () {
       Context context = new Context();
       context.State = new NormalState();
       Random r = new Random(37);
       for (int i = 5; i<=25; i++) {
         int command = r.Next(3);
         Console.Write(context.Request(command)+" ");
       }
       Console.WriteLine();
       Console.ReadKey();
     }
   }
    /* Output
    8 10 8 || 6 11 16 11 6 ||1 3 || 1 ||-4 || -6 -1 4 ||-1 || -3 2 7 ||2 4 
    */
  
 
 
 
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 25岁的心里话
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列01:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
历史上的今天:
2009-08-26 Spring.NET学习笔记(6)-基础AOP
点击右上角即可分享
微信分享提示