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

設計模式(C#) - 組合模式(Composite Pattern)(4)

編輯:關於C語言

MessageModelLeaf

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

namespace Pattern.Composite
{
  /**//// <summary>
  /// Message實體樹葉(Leaf)
  /// </summary>
  public class MessageModelLeaf : MessageModelComponent
  {
    /**//// <summary>
    /// 構造函數
    /// </summary>
    /// <param name="name">名稱</param>
    /// <param name="mm">Message實體對象</param>
    public MessageModelLeaf(string name, MessageModel mm)
      : base(name, mm)
    {

    }

    /**//// <summary>
    /// 添加
    /// </summary>
    /// <param name="mmc">MessageModelComponent</param>
    public override void Add(MessageModelComponent mmc)
    {
      throw new Exception("不能添加");
    }

    /**//// <summary>
    /// 刪除
    /// </summary>
    /// <param name="mmc">MessageModelComponent</param>
    public override void Remove(MessageModelComponent mmc)
    {
      throw new Exception("不能刪除");
    }

    /**//// <summary>
    /// 獲取
    /// </summary>
    /// <param name="indent">縮進數</param>
    /// <returns></returns>
    public override string GetData(int indent)
    {
      return new String('—', indent) +
        "樹葉名稱:" + _name +
        ";信息內容:" + _messageModel.Message +
        "<br />";
    }
  }
}

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