zoukankan      html  css  js  c++  java
  • 略读桥接模式

    bridge

    使用思路:在同一个软件内保存不同版本的功能,尤其是新功能替代旧功能,但旧功能又要继续为已有客户程序服务。

    例子

    简单的桥接代码:

      using System;
     
      class BridgePattern {
        
        // Bridge Pattern                           Judith Bishop Dec 2006, Aug 2007
        // Shows an abstraction and two implementations proceeding independently
     
        class Abstraction  {
          Bridge bridge;
          public Abstraction (Bridge implementation) {
            bridge = implementation;
          }
            public string Operation () {
            return "Abstraction" +" <<< BRIDGE >>>> "+bridge.OperationImp();
          }
        }
        
        interface Bridge {
          string OperationImp();
        }
        
        class ImplementationA : Bridge {
          public string  OperationImp () {
            return "ImplementationA";
          }
        }
        
        class ImplementationB : Bridge {
          public string  OperationImp () {
            return "ImplementationB";
          }
        }
        
        static void Main () {
          Console.WriteLine("Bridge Pattern\n");
          Console.WriteLine(new Abstraction (new ImplementationA()).Operation());
          Console.WriteLine(new Abstraction (new ImplementationB()).Operation());
          Console.ReadKey();
        }
      }
    /* Output
    Bridge Pattern
    Abstraction <<< BRIDGE >>>> ImplementationA
    Abstraction <<< BRIDGE >>>> ImplementationB
    */
  • 相关阅读:
    图形
    附属信息
    文件操作
    字符编码
    Python数据类型之基础记。。。
    python并发编程之多进程
    python并发编程之多进程
    计算机基础之计算机系统的简单了解。
    元类
    基于socketserver模块实现并发tcp/udp
  • 原文地址:https://www.cnblogs.com/my36z/p/1515135.html
Copyright © 2011-2022 走看看