展开
拓展 关闭
订阅号推广码
GitHub
视频
公告栏 关闭

组合模式在JDK应用

  • Java的集合类-HashMap就使用了组合模式
# 编写测试代码
public class HashMapComp {
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Map<Integer,String> hashMap=new HashMap<Integer,String>();
        hashMap.put(0, "东游记");//直接存放叶子节点
        Map<Integer,String> map=new HashMap<Integer,String>();
        map.put(1, "西游记");
        map.put(2, "红楼梦"); //..
        hashMap.putAll(map);
        System.out.println(hashMap);
    }
}

# 查看Map
public interface Map<K,V> {
//add, remover..
}

# 查看实现
public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Cloneable, Serializable {
}

# 静态内部类,叶子节点
static class Node<K,V> implements Map.Entry<K,V> {
    final int hash;
    final K key;
    V value;
    Node<K,V> next;
}
  • 组合模式的注意事项和细节
1) 简化客户端操作。客户端只需要面对一致的对象而不用考虑整体部分或者节点叶子的问题。
2) 具有较强的扩展性。当我们要更改组合对象时,我们只需要调整内部的层次关系,客户端不用做出任何改动.
3) 方便创建出复杂的层次结构。客户端不用理会组合里面的组成细节,容易添加节点或者叶子从而创建出复杂的树形结构
4) 需要遍历组织机构,或者处理的对象具有树形结构时,  非常适合使用组合模式.
5) 要求较高的抽象性,如果节点和叶子有很多差异性的话,比如很多方法和属性都不一样,不适合使用组合模式
posted @ 2022-08-31 13:51  DogLeftover  阅读(15)  评论(0编辑  收藏  举报