真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Java中組合模型之對象結(jié)構(gòu)模式的詳解

Java 中組合模型之對象結(jié)構(gòu)模式的詳解

成都創(chuàng)新互聯(lián)公司成立于2013年,先為彰武等服務(wù)建站,彰武等地企業(yè),進行企業(yè)商務(wù)咨詢服務(wù)。為彰武企業(yè)網(wǎng)站制作PC+手機+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

一、意圖

將對象組合成樹形結(jié)構(gòu)以表示”部分-整體”的層次結(jié)構(gòu)。Composite使得用戶對單個對象和組合對象的使用具有一致性。

二、適用性

你想表示對象的部分-整體層次結(jié)構(gòu)

你希望用戶忽略組合對象與單個對象的不同,用戶將統(tǒng)一使用組合結(jié)構(gòu)中的所有對象。

三、結(jié)構(gòu)

Java 中組合模型之對象結(jié)構(gòu)模式的詳解

四、代碼

public abstract class Component {
  protected String name; //節(jié)點名
  public Component(String name){
    this.name = name;
  }

  public abstract void doSomething();
}

public class Composite extends Component {
  /**
   * 存儲節(jié)點的容器
   */
  private List 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){
    // 構(gòu)造一個根節(jié)點
    Composite root = new Composite("Root");

    // 構(gòu)造兩個枝干節(jié)點
    Composite branch2 = new Composite("Branch2");
    Composite branch3 = new Composite("Branch3");

    // 構(gòu)造兩個葉子節(jié)點
    Leaf leaf1 = new Leaf("Leaf1");
    Leaf leaf2 = new Leaf("Leaf2");

    branch2.addChild(leaf1);
    branch3.addChild(leaf2);

    root.addChild(branch2);
    root.addChild(branch3);

    root.doSomething();
  }
}

輸出結(jié)果:
Root
Branch2
Leaf1
Branch3
Leaf2

如有疑問請留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


網(wǎng)站題目:Java中組合模型之對象結(jié)構(gòu)模式的詳解
鏈接地址:http://weahome.cn/article/ggchcp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部