程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> 設計模式(C#) - 責任鏈模式(Chain of Responsibility Pattern)(4)

設計模式(C#) - 責任鏈模式(Chain of Responsibility Pattern)(4)

編輯:關於C語言

Leader

using System;
using System.Collections.Generic;
using System.Text;

namespace Pattern.ChainOfResponsibility
{
  /**//// <summary>
  /// 抽象處理者(Handler)角色
  /// </summary>
  public class Leader : AbstractExecutor
  {
    /**//// <summary>
    /// 插入Message
    /// </summary>
    /// <param name="mm">Message實體對象</param>
    /// <returns>執行者;內容;時間</returns>
    public override string Insert(MessageModel mm)
    {
      string rtn = "";

      // 插入的信息字符數小於10
      if (mm.Message.Length < 10)
      {
        SqlMessage m = new SqlMessage();

        if (m.Insert(mm))
        {
          rtn = "執行者:主管" + " 內容:" + mm.Message + " 時間:" + mm.PublishTime.ToString();
        }
      }
      // 否則讓上級去執行
      else if (base._executor != null)
      {
        rtn = _executor.Insert(mm);
      }

      return rtn;
    }
  }
}

Manager

using System;
using System.Collections.Generic;
using System.Text;

namespace Pattern.ChainOfResponsibility
{
  /**//// <summary>
  /// 抽象處理者(Handler)角色
  /// </summary>
  public class Manager : AbstractExecutor
  {
    /**//// <summary>
    /// 插入Message
    /// </summary>
    /// <param name="mm">Message實體對象</param>
    /// <returns>執行者;內容;時間</returns>
    public override string Insert(MessageModel mm)
    {
      string rtn = "";

      // 插入的信息字符數小於15
      if (mm.Message.Length < 15)
      {
        SqlMessage m = new SqlMessage();

        if (m.Insert(mm))
        {
          rtn = "執行者:經理" + " 內容:" + mm.Message + " 時間:" + mm.PublishTime.ToString();
        }
      }
      else
      {
        rtn = "你所插入的Message不符合要求";
      }

      return rtn;
    }
  }
}

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved