惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

F
Fortinet All Blogs
罗磊的独立博客
IT之家
IT之家
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - Franky
博客园 - 聂微东
博客园_首页
爱范儿
爱范儿
量子位
博客园 - 三生石上(FineUI控件)
G
Google Developers Blog
Martin Fowler
Martin Fowler
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Y
Y Combinator Blog
Vercel News
Vercel News
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Engineering at Meta
Engineering at Meta

博客园 - AlanPaoPao

23)Visitor 22)Template 21)Strategy 20)State 19)Observer 18)Memento 17)Mediator 16)Iterator 15)Interpreter 14)Command 13)Chain Of Responsibility 12)Proxy 11)Flyweight 10)Facade 09)Decorator 07)Bridge 06)Adapter 05)Prototype 04)Factory Method
08)Composite
AlanPaoPao · 2007-09-19 · via 博客园 - AlanPaoPao

    组合模式的目的是: 用户对单个对象和组合对象的使用具有一致性
    实例代码:

abstract class TreeElement
{
  
protected string name;
  
public TreeElement(string name)
  
{
    
this.name = name;
  }

  
public abstract void Add(TreeElement t);
  
public abstract void Remove(TreeElement t);
  
public virtual void Display(int indent)
  
{
    Console.WriteLine(
new String(' ', indent) + name);
  }

}

class SimpleElement : TreeElement
{
  
public SimpleElement(string name)
    : 
base(name)
  
{
  }

  
public override void Add(TreeElement c)
  
{
    Console.WriteLine(
"不能添加节点");
  }

  
public override void Remove(TreeElement c)
  
{
    Console.WriteLine(
"不能删除节点");
  }

}

class CompositeElement : TreeElement
{
  
private ArrayList elements = new ArrayList();
  
public CompositeElement(string name)
    : 
base(name)
  
{
  }

  
public override void Add(TreeElement d)
  
{
    elements.Add(d);
  }

  
public override void Remove(TreeElement d)
  
{
    elements.Remove(d);
  }

  
public override void Display(int indent)
  
{
    
base.Display(indent);
    
foreach (TreeElement c in elements)
    
{
      c.Display(indent 
+ 2);
    }

  }

}

class MainApp
{
  
static void Main()
  
{
    CompositeElement root 
= new CompositeElement("树根");
    CompositeElement comp1 
= new CompositeElement("树枝1");
    comp1.Add(
new SimpleElement("树叶1"));
    comp1.Add(
new SimpleElement("树叶2"));
    root.Add(comp1);
    CompositeElement comp2 
= new CompositeElement("树枝2");
    comp2.Add(
new SimpleElement("树叶3"));
    comp2.Add(
new SimpleElement("树叶4"));
    root.Add(comp2);
    root.Add(
new SimpleElement("树叶5"));
    root.Add(
new SimpleElement("树叶6"));
    SimpleElement pe 
= new SimpleElement("树叶7");
    root.Add(pe);
    root.Add(
new SimpleElement("树叶8"));
    root.Display(
1);
    Console.WriteLine();
    root.Remove(comp2);
    root.Remove(pe);
    root.Display(
1);
    Console.Read();
  }

}