组合模式(设计模式详解版)-亚博电竞手机版
设计模式
2021年02月06日 15:32
6
组合模式的定义与特点
组合(composite pattern)模式的定义:有时又叫作整体-部分(part-whole)模式,它是一种将对象组合成树状的层次结构的模式,用来表示“整体-部分”的关系,使用户对单个对象和组合对象具有一致的访问性,属于结构型设计模式。 组合模式一般用来描述整体与部分的关系,它将对象组织到树形结构中,顶层的节点被称为根节点,根节点下面可以包含树枝节点和叶子节点,树枝节点下面又可以包含树枝节点和叶子节点,树形结构图如下。- 组合模式使得客户端代码可以一致地处理单个对象和组合对象,无须关心自己处理的是单个对象,还是组合对象,这简化了客户端代码;
- 更容易在组合体内加入新的对象,客户端不会因为加入了新的对象而更改源代码,满足“开闭原则”;
- 设计较复杂,客户端需要花更多时间理清类之间的层次关系;
- 不容易限制容器中的构件;
- 不容易用继承的方法来增加构件的新功能;
组合模式的结构与实现
组合模式的结构不是很复杂,下面对它的结构和实现进行分析。1. 模式的结构
组合模式包含以下主要角色。- 抽象构件(component)角色:它的主要作用是为树叶构件和树枝构件声明公共接口,并实现它们的默认行为。在透明式的组合模式中抽象构件还声明访问和管理子类的接口;在安全式的组合模式中不声明访问和管理子类的接口,管理工作由树枝构件完成。(总的抽象类或接口,定义一些通用的方法,比如新增、删除)
- 树叶构件(leaf)角色:是组合中的叶节点对象,它没有子节点,用于继承或实现抽象构件。
- 树枝构件(composite)角色 / 中间构件:是组合中的分支节点对象,它有子节点,用于继承和实现抽象构件。它的主要作用是存储和管理子部件,通常包含 add()、remove()、getchild() 等方法。
(1) 透明方式
在该方式中,由于抽象构件声明了所有子类中的全部方法,所以客户端无须区别树叶对象和树枝对象,对客户端来说是透明的。但其缺点是:树叶构件本来没有 add()、remove() 及 getchild() 方法,却要实现它们(空实现或抛异常),这样会带来一些安全性问题。其结构图如图 1 所示。(2) 安全方式
在该方式中,将管理子构件的方法移到树枝构件中,抽象构件和树叶构件没有对子对象的管理方法,这样就避免了上一种方式的安全性问题,但由于叶子和分支有不同的接口,客户端在调用时要知道树叶对象和树枝对象的存在,所以失去了透明性。其结构图如图 2 所示。2. 模式的实现
假如要访问集合 c0={leaf1,{leaf2,leaf3}} 中的元素,其对应的树状图如图 3 所示。透明组合模式
下面为透明式的组合模式的实现代码。public class compositepattern { public static void main(string[] args) { component c0 = new composite(); component c1 = new composite(); component leaf1 = new leaf("1"); component leaf2 = new leaf("2"); component leaf3 = new leaf("3"); c0.add(leaf1); c0.add(c1); c1.add(leaf2); c1.add(leaf3); c0.operation(); } } //抽象构件 interface component { public void add(component c); public void remove(component c); public component getchild(int i); public void operation(); } //树叶构件 class leaf implements component { private string name; public leaf(string name) { this.name = name; } public void add(component c) { } public void remove(component c) { } public component getchild(int i) { return null; } public void operation() { system.out.println("树叶" name ":被访问!"); } } //树枝构件 class composite implements component { private arraylist程序运行结果如下:children = new arraylist (); public void add(component c) { children.add(c); } public void remove(component c) { children.remove(c); } public component getchild(int i) { return children.get(i); } public void operation() { for (object obj : children) { ((component) obj).operation(); } } }
树叶1:被访问! 树叶2:被访问! 树叶3:被访问!
安全组合模式
安全式的组合模式与透明式组合模式的实现代码类似,只要对其做简单修改就可以了,代码如下。 首先修改 component 代码,只保留层次的公共行为。interface component { public void operation(); }然后修改客户端代码,将树枝构件类型更改为 composite 类型,以便获取管理子类操作的方法。
public class compositepattern { public static void main(string[] args) { composite c0 = new composite(); composite c1 = new composite(); component leaf1 = new leaf("1"); component leaf2 = new leaf("2"); component leaf3 = new leaf("3"); c0.add(leaf1); c0.add(c1); c1.add(leaf2); c1.add(leaf3); c0.operation(); } }
组合模式的应用实例
【例1】用组合模式实现当用户在商店购物后,显示其所选商品信息,并计算所选商品总价的功能。 说明:假如李先生到韶关“天街e角”生活用品店购物,用 1 个红色小袋子装了 2 包婺源特产(单价 7.9 元)、1 张婺源地图(单价 9.9 元);用 1 个白色小袋子装了 2 包韶关香藉(单价 68 元)和 3 包韶关红茶(单价 180 元);用 1 个中袋子装了前面的红色小袋子和 1 个景德镇瓷器(单价 380 元);用 1 个大袋子装了前面的中袋子、白色小袋子和 1 双李宁牌运动鞋(单价 198 元)。 最后“大袋子”中的内容有:{1 双李宁牌运动鞋(单价 198 元)、白色小袋子{2 包韶关香菇(单价 68 元)、3 包韶关红茶(单价 180 元)}、中袋子{1 个景德镇瓷器(单价 380 元)、红色小袋子{2 包婺源特产(单价 7.9 元)、1 张婺源地图(单价 9.9 元)}}},现在要求编程显示李先生放在大袋子中的所有商品信息并计算要支付的总价。 本实例可按安全组合模式设计,其结构图如图 4 所示。package composite; import java.util.arraylist; public class shoppingtest { public static void main(string[] args) { float s = 0; bags bigbag, mediumbag, smallredbag, smallwhitebag; goods sp; bigbag = new bags("大袋子"); mediumbag = new bags("中袋子"); smallredbag = new bags("红色小袋子"); smallwhitebag = new bags("白色小袋子"); sp = new goods("婺源特产", 2, 7.9f); smallredbag.add(sp); sp = new goods("婺源地图", 1, 9.9f); smallredbag.add(sp); sp = new goods("韶关香菇", 2, 68); smallwhitebag.add(sp); sp = new goods("韶关红茶", 3, 180); smallwhitebag.add(sp); sp = new goods("景德镇瓷器", 1, 380); mediumbag.add(sp); mediumbag.add(smallredbag); sp = new goods("李宁牌运动鞋", 1, 198); bigbag.add(sp); bigbag.add(smallwhitebag); bigbag.add(mediumbag); system.out.println("您选购的商品有:"); bigbag.show(); s = bigbag.calculation(); system.out.println("要支付的总价是:" s "元"); } } //抽象构件:物品 interface articles { public float calculation(); //计算 public void show(); } //树叶构件:商品 class goods implements articles { private string name; //名字 private int quantity; //数量 private float unitprice; //单价 public goods(string name, int quantity, float unitprice) { this.name = name; this.quantity = quantity; this.unitprice = unitprice; } public float calculation() { return quantity * unitprice; } public void show() { system.out.println(name "(数量:" quantity ",单价:" unitprice "元)"); } } //树枝构件:袋子 class bags implements articles { private string name; //名字 private arraylist程序运行结果如下:bags = new arraylist (); public bags(string name) { this.name = name; } public void add(articles c) { bags.add(c); } public void remove(articles c) { bags.remove(c); } public articles getchild(int i) { return bags.get(i); } public float calculation() { float s = 0; for (object obj : bags) { s = ((articles) obj).calculation(); } return s; } public void show() { for (object obj : bags) { ((articles) obj).show(); } } }
您选购的商品有: 李宁牌运动鞋(数量:1,单价:198.0元) 韶关香菇(数量:2,单价:68.0元) 韶关红茶(数量:3,单价:180.0元) 景德镇瓷器(数量:1,单价:380.0元) 婺源特产(数量:2,单价:7.9元) 婺源地图(数量:1,单价:9.9元) 要支付的总价是:1279.7元
组合模式的应用场景
前面分析了组合模式的结构与特点,下面分析它适用的以下应用场景。- 在需要表示一个对象整体与部分的层次结构的场合。
- 要求对用户隐藏组合对象与单个对象的不同,用户可以用统一的接口使用组合结构中的所有对象的场合。
组合模式的扩展
如果对前面介绍的组合模式中的树叶节点和树枝节点进行抽象,也就是说树叶节点和树枝节点还有子节点,这时组合模式就扩展成复杂的组合模式了,如 java awt/swing 中的简单组件 jtextcomponent 有子类 jtextfield、jtextarea,容器组件 container 也有子类 window、panel。复杂的组合模式的结构图如图 5 所示。展开全文