博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读书笔记16:组合模式
阅读量:6516 次
发布时间:2019-06-24

本文共 2689 字,大约阅读时间需要 8 分钟。

概念

    将对象组合成树形结构以表示‘部分-整体’的层次结构。组合模式使得用户对单个对象和组合对象的使用具有一致性。
角色
    Component:组合中对象接口
    Leaf:叶子,继承自Component
    Composite:分支,继承自Component
    注意:这里分为透明模式和安全模式,透明模式指,叶子和分支完全继承自Component,即使没用的方法也继承下来。安全模式指,叶子和分支不是都用到的方法,在Component中不声明,至于叶子和分支谁有特殊的方法,谁自己再声明。

代码模型:

    这里用的是透明方式。
    Component抽象类:

public abstract class Component      {          protected string name;            public Component(string currentName)          {              this.name = currentName;          }            public abstract void Add(Component component);            public abstract void Remove(Component component);            public abstract void Operation(int inde);      }

     叶子Leaf类:

public class Leaf : Component      {            public Leaf(string name)              : base(name)          {          }            public override void Add(Component component)          {              throw new NotImplementedException();          }            public override void Remove(Component component)          {              throw new NotImplementedException();          }            public override void Operation(int index)          {              Console.WriteLine(new string('-', index) + name);          }      }

     分支Composite类:

public class Composite : Component      {            private List
children = new List
(); public Composite(string name) : base(name) { } public override void Add(Component component) { children.Add(component); } public override void Remove(Component component) { children.Remove(component); } public override void Operation(int index) { Console.WriteLine(new string('-',index)+name); foreach (Component component in children) { component.Operation(index+2); } }

      客户端使用:

static void Main(string[] args)          {              Composite root = new Composite("root");              root.Add(new Leaf("Leaf A"));              root.Add(new Leaf("Leaf B"));                Composite compositeX = new Composite("CompositeX");              compositeX.Add(new Leaf("Leaf XA"));              compositeX.Add(new Leaf("Leaf XB"));                root.Add(compositeX);                Composite compositeXY = new Composite("CompositeXY");              compositeXY.Add(new Leaf("Leaf XYA"));              compositeXY.Add(new Leaf("Leaf XYB"));                compositeX.Add(compositeXY);                root.Add(new Leaf("Leaf C"));                root.Operation(1);                Console.ReadLine();          }

   结果显示:

       

    组合模式的目的是程序在访问对象时,有统一的访问方式。从而可以像处理简单元素一样来处理复杂元素。

转载地址:http://qvafo.baihongyu.com/

你可能感兴趣的文章
十四、df命令、du命令、磁盘分区
查看>>
子网划分
查看>>
ETL工具kettle的使用,基础--1 (最基本的输入输出)
查看>>
决心书
查看>>
Confluence 6 删除垃圾内容
查看>>
手机控必备网站,让自己拥有更好的智能手机
查看>>
如何在PDF上添加水印
查看>>
淺談比特币
查看>>
2.Linux基本知识点整理(不定时更新中..)
查看>>
所有Mac用户都需要知道的9个实用终端命令行
查看>>
使用ISO镜像构建基于FTP,HTTP的YUM源服务器
查看>>
RMI(远程方法调用)介绍
查看>>
第一章
查看>>
Spring Boot基础教程-Spring Tool Suite工具的安装
查看>>
Android 事件处理,事件模型详解
查看>>
今天开通了博客
查看>>
TCP/IP、Http的区别
查看>>
SDK 概念
查看>>
day18:获取网卡IP地址|检查目录|下载文件|猜数字|根据名字得数字
查看>>
dom4j解析XML
查看>>