以学校院系展示引出组合模式
在一个页面中展示出学校的院系组成,一个学校有多个学院, 一个学院有多个系。如图:
传统方案解决学校院系展示(类图)
问题分析
1)将学院看做是学校的子类,系是学院的子类,这样实际上是站在组织大小来进行分层次的
2)实际上我们的要求是 :在一个页面中展示出学校的院系组成,一个学校有多个学院,一个学院有多个系, 因此这种方案,不能很好实现的管理的操作,比如对学院、系的添加,删除,遍历等
解决方案:把学校、院、系都看做是组织结构,他们之间没有继承的关系,而是一个树形结构,可以更好的实现管理操作。 => 组合模式
组合模式,又称为部分与整体模式,将对象组合成树状结构以表示“整体-部分”的层次关系。
组合模式依据树形结构来组合对象,用来表示部分以及整体层次,属于结构型模式
组合模式使得用户对单个对象和组合对象的访问具有一致性,(即组合能让客户端以一致的方式处理个别对象以及组合对象)
组织管理的抽象类
- public abstract class OrganizationComponent {
- private String name;
- //描述
- private String description;
-
- //初始化
- public OrganizationComponent(String name,String description){
- this.name = name;
- this.description = description;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getDescription() {
- return description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
-
- //输出打印方法; 大学,学院,院系都需要的;作为抽象方法;
- protected abstract void print();
-
- //由于叶子节点可能不需要某些方法,所以就没用抽象方法,比如院系就不需要实现
- //添加方法;
- protected void add(OrganizationComponent organizationComponent){
- throw new UnsupportedOperationException();
- }
-
- //删除方法;
- protected void remove(OrganizationComponent organizationComponent){
- throw new UnsupportedOperationException();
- }
- }
大学类:作为 Composite 管理College(学院)
- public class University extends OrganizationComponent{
- //这里存放的是学院;
- List
organizationComponents = new ArrayList(); -
- public University(String name, String description) {
- super(name, description);
- }
-
- //添加方法
- @Override
- protected void add(OrganizationComponent organizationComponent) {
- organizationComponents.add(organizationComponent);
- }
-
- //删除方法
- @Override
- protected void remove(OrganizationComponent organizationComponent) {
- organizationComponents.remove(organizationComponent);
- }
-
- @Override
- protected void print() {
- System.out.println("-------------" + getName() + "------------------------");
- for (OrganizationComponent organizationComponent : organizationComponents) {
- organizationComponent.print();
- }
- }
- }
学院类:管理院系
- public class College extends OrganizationComponent{
-
- List
organizationComponents = new ArrayList(); -
- public College(String name, String description) {
- super(name, description);
- }
-
- //添加方法
- @Override
- protected void add(OrganizationComponent organizationComponent) {
- organizationComponents.add(organizationComponent);
- }
-
- //删除方法
- @Override
- protected void remove(OrganizationComponent organizationComponent) {
- organizationComponents.remove(organizationComponent);
- }
-
- @Override
- protected void print() {
- System.out.println("-------------" + getName() + "------------------------");
- for (OrganizationComponent organizationComponent : organizationComponents) {
- organizationComponent.print();
- }
- }
- }
院系类
- public class Department extends OrganizationComponent{
-
- public Department(String name, String description) {
- super(name, description);
- }
-
- @Override
- protected void print() {
- System.out.println(getName() + " " + getDescription());
- }
- }
测试使用
- public class Client {
- public static void main(String[] args) {
- OrganizationComponent university = new University("大学", "大学");
-
- OrganizationComponent computerCollege = new College("计算机学院", "计算机");
- OrganizationComponent messageCollege = new College("信息与工程学院","信息与工程");
-
- computerCollege.add(new Department("软件工程","软件"));
- computerCollege.add(new Department("计算机科学与技术","计算机科学与技术"));
-
- messageCollege.add(new Department("电子信息","电子信息"));
- messageCollege.add(new Department("通信工程","通信工程"));
-
- university.add(computerCollege);
- university.add(messageCollege);
-
- university.print();
- }
- }
结果
-------------大学------------------------
-------------计算机学院------------------------
软件工程 软件
计算机科学与技术 计算机科学与技术
-------------信息与工程学院------------------------
电子信息 电子信息
通信工程 通信工程
Java 的集合类HashMap就使用了组合模式
进入Map接口查看,其中的put方法仅为抽象方法
- public interface Map
{ -
- V put(K key, V value);
-
- //......
-
- }
注意到Map接口的实现类AbstractMap是个抽象类,类似于组合模式的Component(抽象构建)
其中重写 put 方法时,默认实现,抛出不支持操作的异常对象
- public abstract class AbstractMap
implements Map { -
- public V put(K var1, V var2) {
- throw new UnsupportedOperationException();
- }
-
- // ......
- }
AbstractMap的子类HashMap,类似于组合模式的Composite(中间构建)
实现了 put方法,可以看到存入了Node节点中
- public class HashMap
extends AbstractMap implements Map, Cloneable, Serializable { -
- public V put(K var1, V var2) {
- return this.putVal(hash(var1), var1, var2, false, true);
- }
-
- final V putVal(int var1, K var2, V var3, boolean var4, boolean var5) {
- HashMap.Node[] var6;
- int var8;
- if ((var6 = this.table) == null || (var8 = var6.length) == 0) {
- var8 = (var6 = this.resize()).length;
- }
-
- Object var7;
- int var9;
- if ((var7 = var6[var9 = var8 - 1 & var1]) == null) {
- var6[var9] = this.newNode(var1, var2, var3, (HashMap.Node)null);
- } else {
- Object var10;
- Object var11;
- if (((HashMap.Node)var7).hash == var1 && ((var11 = ((HashMap.Node)var7).key) == var2 || var2 != null && var2.equals(var11))) {
- var10 = var7;
- } else if (var7 instanceof HashMap.TreeNode) {
- var10 = ((HashMap.TreeNode)var7).putTreeVal(this, var6, var1, var2, var3);
- } else {
- int var12 = 0;
-
- while(true) {
- if ((var10 = ((HashMap.Node)var7).next) == null) {
- ((HashMap.Node)var7).next = this.newNode(var1, var2, var3, (HashMap.Node)null);
- if (var12 >= 7) {
- this.treeifyBin(var6, var1);
- }
- break;
- }
-
- if (((HashMap.Node)var10).hash == var1 && ((var11 = ((HashMap.Node)var10).key) == var2 || var2 != null && var2.equals(var11))) {
- break;
- }
-
- var7 = var10;
- ++var12;
- }
- }
-
- //......
- }
Node类似于组合模式的叶子节点 Leaf
- static class Node
implements Entry { - final int hash;
- final K key;
- V value;
- HashMap.Node
next; -
- Node(int var1, K var2, V var3, HashMap.Node
var4) { - this.hash = var1;
- this.key = var2;
- this.value = var3;
- this.next = var4;
- }
-
- public final K getKey() {
- return this.key;
- }
-
- public final V getValue() {
- return this.value;
- }
-
- public final String toString() {
- return this.key + "=" + this.value;
- }
-
- public final int hashCode() {
- return Objects.hashCode(this.key) ^ Objects.hashCode(this.value);
- }
-
- public final V setValue(V var1) {
- Object var2 = this.value;
- this.value = var1;
- return var2;
- }
-
- public final boolean equals(Object var1) {
- if (var1 == this) {
- return true;
- } else {
- if (var1 instanceof Entry) {
- Entry var2 = (Entry)var1;
- if (Objects.equals(this.key, var2.getKey()) && Objects.equals(this.value, var2.getValue())) {
- return true;
- }
- }
-
- return false;
- }
- }
- }
1)简化客户端操作。客户端只需要面对一致的对象而不用考虑整体部分或者节点叶子的问题。
2)具有较强的扩展性。当我们要更改组合对象时,我们只需要调整内部的层次关系,客户端不用做出任何改动。
3)方便创建出复杂的层次结构。客户端不用理会组合里面的组成细节,容易添加节点或者叶子从而创建出复杂的树形结构
4)需要遍历组织机构,或者处理的对象具有树形结构时,非常适合使用组合模式。
5)要求较高的抽象性,如果节点和叶子有很多差异性的话,比如很多方法和属性都不一样,不适合使用组合模式