這篇文章主要介紹了Java 中組合模型之物件結構模式的詳解的相關資料,希望透過本文能幫助到大家理解應用物件結構模型,需要的朋友可以參考下
Java 中組合模型之物件結構模式的詳解
一、意圖
將物件組合成樹狀結構以表示」部分-整體”的層次結構。 Composite使得使用者對單一物件和組合物件的使用具有一致性。
二、適用性
你想表示物件的部分-整體層次結構
你希望使用者忽略組合對象與單一物件的不同,使用者將統一使用組合結構中的所有物件。
三、結構
#四、程式碼
public abstract class Component { protected String name; //节点名 public Component(String name){ this.name = name; } public abstract void doSomething(); }
public class Composite extends Component { /** * 存储节点的容器 */ private List<Component> components = new ArrayList<>(); public Composite(String name) { super(name); } @Override public void doSomething() { System.out.println(name); if(null!=components){ for(Component c: components){ c.doSomething(); } } } public void addChild(Component child){ components.add(child); } public void removeChild(Component child){ components.remove(child); } public Component getChildren(int index){ return components.get(index); } }
public class Leaf extends Component { public Leaf(String name) { super(name); } @Override public void doSomething() { System.out.println(name); } }#########
public class Client { public static void main(String[] args){ // 构造一个根节点 Composite root = new Composite("Root"); // 构造两个枝干节点 Composite branch1 = new Composite("Branch1"); Composite branch2 = new Composite("Branch2"); // 构造两个叶子节点 Leaf leaf1 = new Leaf("Leaf1"); Leaf leaf2 = new Leaf("Leaf2"); branch1.addChild(leaf1); branch2.addChild(leaf2); root.addChild(branch1); root.addChild(branch2); root.doSomething(); } } 输出结果: Root Branch1 Leaf1 Branch2 Leaf2
以上是Java中組合模型之物件結構模式的實例分析的詳細內容。更多資訊請關注PHP中文網其他相關文章!