c# 组合模式

时间:2021-05-02

结构图:
抽象对象:

复制代码 代码如下:


abstract class Component
{
protected string name;
public Component(string name)
{
this.name = name;
}
public abstract void Add(Component c);
public abstract void Remove(Component c);
public abstract void Display(int depth);
}


无子节点的:

#176cf4a429c4657f63e3be18c894376c# 代码如下:


class Leaf : Component
{
public Leaf(string name)
: base(name)
{ }
public override void Add(Component c)
{
//throw new NotImplementedException();
Console.WriteLine("Cannot add to a Leaf");
}
public override void Remove(Component c)
{
//throw new NotImplementedException();
Console.WriteLine("Cannot remove to a Leaf");
}
public override void Display(int depth)
{
//throw new NotImplementedException();
Console.WriteLine(new string('-', depth) + name);
}
}


可以有子结点:

复制代码 代码如下:


class Composite : Component
{
private List<Component> children = new List<Component>();
public Composite(string name)
: base(name)
{ }
public override void Add(Component c)
{
//throw new NotImplementedException();
children.Add(c);
}
public override void Remove(Component c)
{
//throw new NotImplementedException();
children.Remove(c);
}
public override void Display(int depth)
{
//throw new NotImplementedException();
Console.WriteLine(new string('-', depth) + name);
foreach (Component component in children)
{
component.Display(depth + 2);
}
}
}


主函数调用:

复制代码 代码如下:


class Program
{
static void Main(string[] args)
{
Composite root = new Composite("root");
root.Add(new Leaf("Leaf A"));
root.Add(new Leaf("Leaf B"));
Composite comp = new Composite("Composite X");
comp.Add(new Leaf("Leaf XA"));
comp.Add(new Leaf("Leaf XB"));
root.Add(comp);
Composite comp2 = new Composite("Composite X");
comp2.Add(new Leaf("Leaf XYA"));
comp2.Add(new Leaf("Leaf XYB"));
comp.Add(comp2);
root.Display(1);
Console.ReadKey();
}
}

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章