zoukankan      html  css  js  c++  java
  • decoratortheory.cs

      using System;
     
      //Decorator Pattern      Judith Bishop Dec 2006
      // Shows two decorators and the output of various
      // combinations of the decorators on the basic component
     
      interface IComponent {
        string Operation();
      }

      class Component  : IComponent {
        public string Operation () {
          return "I am walking ";
        }
      }

      class DecoratorA: IComponent {
        IComponent component;

        public DecoratorA (IComponent c) {
           component = c;
        }

        public string Operation() {
          string s = component.Operation();
          s += "and listening to Classic FM ";
          return s;
        }
      }

      class DecoratorB  : IComponent {
        IComponent component;
        public string addedState = "past the Coffee Shop ";

        public DecoratorB (IComponent c) {
          component = c;
        }

        public string Operation () {
          string s = component.Operation ();
          s += "to school ";
           return s;
        }

        public string AddedBehavior() {
          return "and I bought a cappucino ";
        }
      }

      class Client {
       
        static void Display(string s, IComponent c) {
          Console.WriteLine(s+ c.Operation());
        }

        static void Main() {
          Console.WriteLine("Decorator Pattern\n");
         
          IComponent component = new Component();
          Display("1. Basic component: ", component);
          Display("2. A-decorated : ", new DecoratorA(component));
          Display("3. B-decorated : ", new DecoratorB(component));
          Display("4. B-A-decorated : ", new DecoratorB(
               new DecoratorA(component)));
          // Explicit DecoratorB
          DecoratorB b = new DecoratorB(new Component());
          Display("5. A-B-decorated : ", new DecoratorA(b));
          //Invoking its added state and added behaviour
          Console.WriteLine("\t\t\t"+ b.addedState + b.AddedBehavior());
        }
      }

    /* Output:
    Decorator Pattern

    1. Basic component: I am walking
    2. A-decorated : I am walking and listening to Classic FM
    3. B-decorated : I am walking to school
    4. B-A-decorated : I am walking and listening to Classic FM to school
    5. A-B-decorated : I am walking to school and listening to Classic FM
          past the Coffee Shop and I bought a cappucino
    */
  • 相关阅读:
    MySQL STR_TO_DATE函数
    mybatis的一种批量更新方法【我】
    ON DUPLICATE KEY UPDATE单个增加更新及批量增加更新的sql
    Unity寻路的功能总结
    Unity3d大会的部分总结
    支付宝Unity
    [Firefly引擎][学习笔记三][已完结]所需模块封装
    [Firefly引擎][学习笔记二][已完结]卡牌游戏开发模型的设计
    [Firefly引擎][学习笔记一][已完结]带用户验证的聊天室
    [Firefly引擎][学习笔记四][已完结]服务器端与客户端的通讯
  • 原文地址:https://www.cnblogs.com/shihao/p/2495995.html
Copyright © 2011-2022 走看看