Java描述設計模式(10):組合模式

本文源碼:GitHub·點這裏 || GitEE·點這裏git

1、生活場景

一、文件系統

下圖是常見的計算機文件系統的一部分。github

圖片描述

文件系統是一個樹結構,樹上長有節點。樹的節點有兩種:segmentfault

  • 樹枝節點
即文件夾,有內部樹結構,在圖中塗有顏色;
  • 樹葉節點
另外一種是文件,即樹葉節點,沒有內部樹結構。

二、打印文件樹結構

public class C01_InScene {
    public static void main(String[] args) {
        File file = new File("F:\\tree") ;
        fileTree(file, 0);
    }
    private static void fileTree(File file, int floor) {
        // 判斷是否存在
        if (file.exists()) {
            if (floor > 0) {
                // 循環打空格
                for (int i = 0; i < floor; i++) {
                    System.out.print(" ");
                }
            }
            if (file.isDirectory()) {
                System.out.println("+" + file.getName());
                // 列出全部文件及文件夾
                File[] files = file.listFiles();
                if (null != files) {
                    // 循環遞歸
                    for (File dirFile : files) {
                        fileTree(dirFile, floor + 1);
                    }
                }
            } else {
                System.out.println("-" + file.getName());
            }
        }
    }
}

執行效果:+表明文件夾,-表明文件。安全

+tree
 +dir1
  +dir2
   -dir2Leaf.txt
  -leaf1.txt
  -leaf2.txt
 -OneLeaf.txt
 -TwoLeaf.txt

三、組合模式描述

組合模式屬於對象的結構模式,有時又叫作「部分——總體」模式。組合模式將對象組織到樹結構中,能夠用來描述總體與部分的關係。組合模式可使客戶端將單純元素與複合元素同等看待。

2、組合模式-安全式

一、基礎概念

安全式的組合模式要求管理彙集的方法只出如今樹枝構件類中,而不出如今樹葉構件類中。涉及到三個角色:
  • 抽象構件(Component)角色
它給組合的對象定義出公共的接口及其默認行爲,能夠用來管理全部的子對象。組合對象一般把它所包含的子對象當作類型爲Component的對象。在安全式的組合模式裏,構件角色並不定義出管理子對象的方法,這必定義由樹枝構件對象給出。
  • 樹葉構件(Leaf)角色
樹葉對象是沒有下級子對象的對象,定義出參加組合的原始對象的行爲。
  • 樹枝構件(Composite)角色
表明參加組合的有下級子對象的對象。樹枝構件類給出全部的管理子對象的方法,如add()、remove()以及getChild()。

二、模式圖解

圖片描述

三、源代碼實現

public class C02_Security_Model {
    public static void main(String[] args) {
        Composite root = new Composite("服裝");
        Composite composite1 = new Composite("男裝");
        Leaf manCoat = new Leaf("上衣");
        Leaf manBottom = new Leaf("下衣");
        composite1.addChild(manCoat);
        composite1.addChild(manBottom);
        Composite composite2 = new Composite("女裝");
        Leaf leaf1 = new Leaf("鞋子");
        Leaf leaf2 = new Leaf("帽子");
        root.addChild(leaf1);
        root.addChild(leaf2);
        root.addChild(composite1);
        root.addChild(composite2);
        root.printStruct("");
    }
}
// 抽象構件角色類
interface Component {
    /*
     * 輸出組件自身的名稱
     */
    void printStruct(String preStr);
}
// 樹枝構件角色類
class Composite implements Component{
    // 用來存儲組合對象中包含的子組件對象
    private List<Component> childComponents = new ArrayList<Component>();
    // 輸出對象的名稱
    private String name;
    // 構造方法,傳入組合對象的名字
    public Composite (String name){
        this.name = name;
    }
    /**
     * 彙集管理方法,增長一個子構件對象
     * @param child 子構件對象
     */
    public void addChild(Component child){
        childComponents.add(child);
    }
    /**
     * 彙集管理方法,刪除一個子構件對象
     * @param index 子構件對象的下標
     */
    public void removeChild(int index){
        childComponents.remove(index);
    }
    /**
     * 彙集管理方法,返回全部子構件對象
     */
    public List getChild(){
        return childComponents ;
    }
    /**
     * 輸出對象的自身結構
     * @param preStr 前綴,主要是按照層級拼接空格,實現向後縮進
     */
    @Override
    public void printStruct(String preStr) {
        //先輸出本身
        System.out.println(preStr+"+"+this.name);
        //若是還包含有子組件,那麼就輸出這些子組件對象
        if (this.childComponents != null){
            //添加兩個空格,表示向後縮進兩個空格
            preStr = preStr+"  ";
            //輸出當前的子對象:使用函數遞歸的原理
            for (Component c : childComponents) {
                c.printStruct(preStr);
            }
        }
    }
}
class Leaf implements Component{
    // 輸出葉子對象的名稱
    private String name;
    // 構造方法,傳入葉子對象的名稱
    public Leaf (String name){
        this.name = name ;
    }
    /**
     * 輸出葉子對象的結構,葉子對象沒有子對象,也就是輸出葉子對象的名字
     * @param preStr 前綴,主要是按照層級拼接的空格,實現向後縮進
     */
    @Override
    public void printStruct(String preStr) {
        System.out.println(preStr+"-"+name);
    }
}
  • 輸出結果
+服裝
  -鞋子
  -帽子
  +男裝
    -上衣
    -下衣
  +女裝

3、組合模式-透明式

一、概念圖解

與安全式的組合模式不一樣的是,透明式的組合模式要求全部的具體構件類,不論樹枝構件仍是樹葉構件,均符合一個固定接口。

圖片描述

二、源代碼實現

public class C03_Transparent_Model {
    public static void main(String[] args) {
        Component1 root = new Composite1("服裝");
        Component1 c1 = new Composite1("男裝");
        Component1 c2 = new Composite1("女裝");
        Component1 leaf1 = new Leaf1("襯衫");
        Component1 leaf2 = new Leaf1("夾克");
        Component1 leaf3 = new Leaf1("裙子");
        Component1 leaf4 = new Leaf1("套裝");
        root.addChild(c1);
        root.addChild(c2);
        c1.addChild(leaf1);
        c1.addChild(leaf2);
        c2.addChild(leaf3);
        c2.addChild(leaf4);
        root.printStruct("");
    }
}
abstract class Component1 {
    /**
     * 輸出組件自身的名稱
     */
    public abstract void printStruct(String preStr);
    // 彙集管理方法,增長一個子構件對象
    public void addChild(Component1 child){
        /**
         * 缺省實現,拋出異常,由於葉子對象沒有此功能
         * 或者子組件沒有實現這個功能
         */
        throw new UnsupportedOperationException("對象不支持此功能");
    }
    // 彙集管理方法,刪除一個子構件對象
    public void removeChild(int index){
        /**
         * 缺省實現,拋出異常,由於葉子對象沒有此功能
         * 或者子組件沒有實現這個功能
         */
        throw new UnsupportedOperationException("對象不支持此功能");
    }
    // 彙集管理方法,返回全部子構件對象
    public List<Component1> getChild(){
        /**
         * 缺省實現,拋出異常,由於葉子對象沒有此功能
         * 或者子組件沒有實現這個功能
         */
        throw new UnsupportedOperationException("對象不支持此功能");
    }
}
class Composite1 extends Component1 {
    // 用來存儲組合對象中包含的子組件對象
    private List<Component1> childComponents = new ArrayList<Component1>();
    // 輸出對象名稱
    private String name ;
    public Composite1 (String name){
        this.name = name;
    }
    /**
     * 彙集管理方法,增長一個子構件對象
     * @param child 子構件對象
     */
    public void addChild(Component1 child){
        childComponents.add(child);
    }
    /**
     * 彙集管理方法,刪除一個子構件對象
     * @param index 子構件對象的下標
     */
    public void removeChild(int index){
        childComponents.remove(index);
    }
    // 彙集管理方法,返回全部子構件對象
    public List<Component1> getChild(){
        return childComponents ;
    }
    /**
     * 輸出對象的自身結構
     * @param preStr 前綴,主要是按照層級拼接空格,實現向後縮進
     */
    @Override
    public void printStruct(String preStr) {
        // 首先輸出本身名稱
        System.out.println(preStr+"+"+this.name);
        // 若是還包含有子組件,那麼就輸出這些子組件對象
        preStr = preStr + "  ";
        if (this.childComponents != null) {
            // 添加兩個空格,表示向後縮進
            for (Component1 c : childComponents) {
                ////遞歸輸出每一個子對象
                c.printStruct(preStr);
            }
        }
    }
}
class Leaf1 extends Component1 {
    private String name;
    public Leaf1 (String name){
        this.name = name;
    }
    /**
     * 輸出葉子對象的結構,葉子對象沒有子對象,也就是輸出葉子對象的名字
     * @param preStr 前綴,主要是按照層級拼接的空格,實現向後縮進
     */
    @Override
    public void printStruct(String preStr) {
        System.out.println(preStr+"-"+name);
    }
}

4、JDK中應用

一、HashMap結構圖

圖片描述

二、分層結構

  • interface Map
  • class AbstractMap implements Map
  • HashMap extends AbstractMap implements Map
  • interface Map.Entry
  • Node implements Map.Entry

三、源代碼

  • 存儲葉子節點
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 = this.table;
    .......
}
  • 存儲樹枝節點
public void putAll(Map<? extends K, ? extends V> var1) {
    this.putMapEntries(var1, true);
}

5、源代碼地址

GitHub·地址
https://github.com/cicadasmile/model-arithmetic-parent
GitEE·地址
https://gitee.com/cicadasmile/model-arithmetic-parent

相關文章
相關標籤/搜索