最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

java實(shí)現(xiàn)Composite組合模式的實(shí)例代碼

 更新時(shí)間:2021年01月21日 11:37:46   作者:醉生夢(mèng)死_0423  
這篇文章主要介紹了java實(shí)現(xiàn)Composite組合模式,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

//20210121
寫(xiě)在前面:剛期末考試完,考了面向?qū)ο?,里邊兒?3個(gè)設(shè)計(jì)模式,我尋思著考完挨個(gè)兒實(shí)現(xiàn)一下,本文實(shí)現(xiàn)組合模式

  • 組合模式核心思想類(lèi)似文件夾的概念,構(gòu)件樹(shù)形結(jié)構(gòu),樹(shù)形有葉子結(jié)點(diǎn)和文件夾結(jié)點(diǎn),文件夾結(jié)點(diǎn)可以包含葉子結(jié)點(diǎn)和文件夾結(jié)點(diǎn)
  • 分為兩種模式

- 透明型:所有節(jié)點(diǎn)構(gòu)造全部相同,但是由于葉子結(jié)點(diǎn)沒(méi)有下層結(jié)點(diǎn),所以其有些方法為空,會(huì)不安全
- 安全型:葉子結(jié)點(diǎn)和文件架節(jié)點(diǎn)構(gòu)造不同,這樣展示的時(shí)候需要判斷節(jié)點(diǎn)屬性,不方便調(diào)用,但是由于沒(méi)有空方法,會(huì)很安全

透明型組合模式程序源代碼:

//節(jié)點(diǎn)抽象父類(lèi)
/**
 * 透明模式就是把組合使用的方法放到抽象類(lèi)中,不管葉子對(duì)象還是數(shù)值對(duì)象都有相同的結(jié)構(gòu)
 * 這樣做的好處就是葉子結(jié)點(diǎn)和樹(shù)枝結(jié)點(diǎn)對(duì)于外界沒(méi)有區(qū)別,他們具備完全一致的行為接口
 */
public abstract class ComponentTransparent {
 protected String name;

 public ComponentTransparent(String name){
  this.name = name;
 }

 //增加一個(gè)葉子構(gòu)件或者樹(shù)枝構(gòu)件
 public abstract void add(ComponentTransparent componentTransparent);

 //刪除
 public abstract void remove(ComponentTransparent componentTransparent);

 //獲取分支下的所有葉子構(gòu)件和樹(shù)枝構(gòu)件
 public abstract void display(int depth);
}
//文件架節(jié)點(diǎn)實(shí)現(xiàn)子類(lèi)
import java.util.ArrayList;

public class CompositeTransparent extends ComponentTransparent{

 public CompositeTransparent(String name){
  super(name);
 }

 //構(gòu)建容器
 private ArrayList<ComponentTransparent> componentTransparentsArraylist= new ArrayList<>();

 @Override
 public void add(ComponentTransparent componentTransparent) {
  this.componentTransparentsArraylist.add(componentTransparent);
 }

 @Override
 public void remove(ComponentTransparent componentTransparent) {
  this.componentTransparentsArraylist.remove(componentTransparent);
 }

 @Override
 public void display(int depth) {
  //輸出樹(shù)形結(jié)構(gòu)
  for (int i = 0;i<depth;++i){
   System.out.print("-");
  }
  System.out.println(this.name);

  //下級(jí)遍歷
  for(ComponentTransparent componentTransparent:this.componentTransparentsArraylist){
   componentTransparent.display(depth+1);
  }
 }
}
//葉子節(jié)點(diǎn)實(shí)現(xiàn)子類(lèi)
public class LeafTransparent extends ComponentTransparent{
 public LeafTransparent(String name){
  super(name);
 }

 @Override
 public void add(ComponentTransparent componentTransparent) {
  //空實(shí)現(xiàn),拋出"不支持請(qǐng)求"異常
  throw new UnsupportedOperationException();
 }

 @Override
 public void remove(ComponentTransparent componentTransparent) {
  throw new UnsupportedOperationException();
 }

 @Override
 public void display(int depth) {
  //輸出樹(shù)形結(jié)構(gòu)的葉子節(jié)點(diǎn)
  for (int i = 0;i<depth;++i){
   System.out.print("-");
  }
  System.out.println(this.name);
 }
}

安全型組合模式源代碼:安全型中,葉子結(jié)點(diǎn)沒(méi)有增加移除方法,方法需要自己實(shí)現(xiàn),而不會(huì)在父類(lèi)中指出

//節(jié)點(diǎn)抽象父類(lèi)
public abstract class ComponentSafty {
 protected String name;

 public ComponentSafty(String name){
  this.name = name;
 }

 //展示
 public abstract void display(int depth);
}
//文件夾節(jié)點(diǎn)實(shí)現(xiàn)子類(lèi)
import java.util.ArrayList;

public class CompositeSafty extends ComponentSafty{
 public CompositeSafty(String name){
  super(name);
 }

 private ArrayList<ComponentSafty> componentSaftyArrayList = new ArrayList<>();

 public void add(ComponentSafty component){
  this.componentSaftyArrayList.add(component);
 }

 public void remove(ComponentSafty componentSafty){
  this.componentSaftyArrayList.remove(componentSafty);
 }

 @Override
 public void display(int depth) {
  for (int i=0;i<depth;++i){
   System.out.print("-");
  }

  System.out.println(this.name);

  for (ComponentSafty componentSafty : componentSaftyArrayList) {
   componentSafty.display(depth+1);
  }
 }
}
//葉子結(jié)點(diǎn)實(shí)現(xiàn)子類(lèi)
public class LeafSafty extends ComponentSafty{

 public LeafSafty(String name){
  super(name);
 }

 @Override
 public void display(int depth) {
  for (int i=0;i<depth;++i){
   System.out.print("-");
  }

  System.out.println(this.name);
 }
}

測(cè)試主類(lèi)程序源代碼

//測(cè)試主類(lèi)
public class Main {
 private static void transparent(){
  //創(chuàng)建根節(jié)點(diǎn)以及其子節(jié)點(diǎn)
  ComponentTransparent root = new CompositeTransparent("root");
  root.add(new LeafTransparent("Leaf A"));
  root.add(new LeafTransparent("Leaf B"));

  //創(chuàng)建第二層結(jié)點(diǎn)及其子節(jié)點(diǎn)
  ComponentTransparent branch = new CompositeTransparent("Composite X");
  branch.add(new LeafTransparent("Leaf XA"));
  branch.add(new LeafTransparent("Leaf XB"));
  root.add(branch);

  //創(chuàng)建第三層節(jié)點(diǎn)及其子結(jié)點(diǎn)
  ComponentTransparent branch2 = new CompositeTransparent("Composite XY");
  branch2.add(new LeafTransparent("Leaf XYA"));
  branch2.add(new LeafTransparent("Leaf XYB"));
  branch.add(branch2);

  //創(chuàng)建第二層結(jié)點(diǎn)
  root.add(new LeafTransparent("Leaf C"));

  //常見(jiàn)第二層節(jié)點(diǎn)并刪除
  ComponentTransparent leaf = new LeafTransparent("Leaf D");
  root.add(leaf);
  root.display(1);
  root.remove(leaf);

  for(int i =0;i<10;++i){
   System.out.print("=");
  }
  System.out.println();
  //展示
  root.display(1);
 }

 private static void safty(){
//創(chuàng)建根節(jié)點(diǎn)以及其子節(jié)點(diǎn)
  CompositeSafty root = new CompositeSafty("root");
  root.add(new LeafSafty("Leaf A"));
  root.add(new LeafSafty("Leaf B"));

  //創(chuàng)建第二層結(jié)點(diǎn)及其子節(jié)點(diǎn)
  CompositeSafty branch = new CompositeSafty("Composite X");
  branch.add(new LeafSafty("Leaf XA"));
  branch.add(new LeafSafty("Leaf XB"));
  root.add(branch);

  //創(chuàng)建第三層節(jié)點(diǎn)及其子結(jié)點(diǎn)
  CompositeSafty branch2 = new CompositeSafty("Composite XY");
  branch2.add(new LeafSafty("Leaf XYA"));
  branch2.add(new LeafSafty("Leaf XYB"));
  branch.add(branch2);

  //創(chuàng)建第二層結(jié)點(diǎn)
  root.add(new LeafSafty("Leaf C"));

  //常見(jiàn)第二層節(jié)點(diǎn)并刪除
  LeafSafty leaf = new LeafSafty("Leaf D");
  root.add(leaf);
  root.display(1);
  root.remove(leaf);

  for(int i =0;i<10;++i){
   System.out.print("=");
  }
  System.out.println();
  //展示
  root.display(1);
 }

 public static void main(String[] args) {
  System.out.println("透明模式:");
  transparent();
  for(int i =0;i<10;++i){
   System.out.print("=");
  }
  System.out.println();
  System.out.println("安全模式:");
  safty();
 }
}

輸出如下:

到此這篇關(guān)于java實(shí)現(xiàn)Composite組合模式的文章就介紹到這了,更多相關(guān)java組合模式內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Java的函數(shù)式接口@FunctionalInterface的使用說(shuō)明

    Java的函數(shù)式接口@FunctionalInterface的使用說(shuō)明

    這篇文章主要介紹了Java的函數(shù)式接口@FunctionalInterface的使用說(shuō)明,我們常用的一些接口Callable、Runnable、Comparator等在JDK8中都添加了@FunctionalInterface注解,需要的朋友可以參考下
    2024-01-01
  • SpringBoot排除自動(dòng)加載數(shù)據(jù)源方式

    SpringBoot排除自動(dòng)加載數(shù)據(jù)源方式

    這篇文章主要介紹了SpringBoot排除自動(dòng)加載數(shù)據(jù)源方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-05-05
  • spring boot 下支付寶的開(kāi)箱既用環(huán)境

    spring boot 下支付寶的開(kāi)箱既用環(huán)境

    這篇文章主要介紹了spring boot 下支付寶的開(kāi)箱既用環(huán)境包括使用場(chǎng)景和使用技巧,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友參考下吧
    2017-10-10
  • 關(guān)于@JSONField和@JsonFormat的使用區(qū)別說(shuō)明

    關(guān)于@JSONField和@JsonFormat的使用區(qū)別說(shuō)明

    這篇文章主要介紹了關(guān)于@JSONField 和 @JsonFormat的區(qū)別說(shuō)明,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2021-11-11
  • Java多態(tài)到底都有啥好處

    Java多態(tài)到底都有啥好處

    Java中的多態(tài)性有兩種類(lèi)型:編譯時(shí)多態(tài)(靜態(tài)綁定)和運(yùn)行時(shí)多態(tài)(動(dòng)態(tài)綁定)。方法重載是靜態(tài)多態(tài)的一個(gè)例子,而方法重寫(xiě)是動(dòng)態(tài)多態(tài)的一個(gè)例子,接下來(lái)通過(guò)本文給大家分享Java多態(tài)到底教了我干啥?有啥好處,一起了解下吧
    2021-05-05
  • 初始JAVA模塊化開(kāi)發(fā)的超詳細(xì)步驟(適合菜鳥(niǎo))

    初始JAVA模塊化開(kāi)發(fā)的超詳細(xì)步驟(適合菜鳥(niǎo))

    這篇文章主要介紹了初始JAVA模塊化開(kāi)發(fā)的超詳細(xì)步驟,詳細(xì)解釋了模塊描述符的職責(zé)、模塊路徑的概念以及如何使用命令行運(yùn)行模塊化Java程序,文中通過(guò)圖文介紹的非常詳細(xì),需要的朋友可以參考下
    2025-03-03
  • java中PriorityBlockingQueue的入隊(duì)知識(shí)點(diǎn)總結(jié)

    java中PriorityBlockingQueue的入隊(duì)知識(shí)點(diǎn)總結(jié)

    在本篇文章里小編給大家整理一篇關(guān)于java中PriorityBlockingQueue的入隊(duì)知識(shí)點(diǎn)總結(jié)內(nèi)容,有需要的朋友們可以學(xué)習(xí)下。
    2021-01-01
  • IntelliJ IDEA快速查看某個(gè)類(lèi)/接口的子類(lèi)或父類(lèi)

    IntelliJ IDEA快速查看某個(gè)類(lèi)/接口的子類(lèi)或父類(lèi)

    本文主要介紹了IntelliJ IDEA快速查看某個(gè)類(lèi)/接口的子類(lèi)或父類(lèi),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2022-07-07
  • java多態(tài)機(jī)制原理特點(diǎn)詳解

    java多態(tài)機(jī)制原理特點(diǎn)詳解

    在本篇文章里小編給大家分享的是關(guān)于java多態(tài)機(jī)制原理特點(diǎn)詳解,有需要的朋友們可以跟著學(xué)習(xí)下。
    2020-02-02
  • 詳解Spring Boot 配置多個(gè)RabbitMQ

    詳解Spring Boot 配置多個(gè)RabbitMQ

    本篇文章主要介紹了Spring Boot 配置多個(gè)RabbitMQ,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-06-06

最新評(píng)論

宾阳县| 甘孜| 萨嘎县| 井陉县| 高州市| 交城县| 潮州市| 额济纳旗| 常熟市| 安远县| 许昌县| 辛集市| 木兰县| 河东区| 大洼县| 通渭县| 香港 | 修武县| 甘孜县| 永和县| 甘谷县| 柞水县| 鹤庆县| 定西市| 恩施市| 南京市| 寿阳县| 朝阳市| 青岛市| 云安县| 海城市| 峨山| 岱山县| 鞍山市| 余干县| 塔河县| 屏南县| 大渡口区| 法库县| 双辽市| 阜新市|