服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - java设计模式之组合模式(Composite)

java设计模式之组合模式(Composite)

2020-07-21 11:39yuminfeng728 Java教程

这篇文章主要为大家详细介绍了java设计模式之组合模式Composite,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

概述

是一种结构型模式,将对象以树形结构组织起来,以表示“部分 - 整体”的层次结构,使得客户端对单个对象和组合对象的使用具有唯一性。

UML类图

java设计模式之组合模式(Composite)

上面的类图包含的角色:

Component:为参加组合的对象声明一个公共的接口,不管是组合还是叶节点。
Leaf:在组合中表示叶子结点对象,叶子结点没有子结点。
Composite表示参加组合的有子对象的对象,并给出树枝构建的行为;

代码示例

java" id="highlighter_475343">
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import java.util.ArrayList;
import java.util.List;
 
abstract class Component {
 
  protected String name;
 
  public Component(String name) {
    this.name = name;
  }
 
  public abstract void Add(Component c);
 
  public abstract void Remove(Component c);
 
  public abstract void GetChild(int depth);
}
 
class Leaf extends Component {
 
  public Leaf(String name) {
    super(name);
  }
 
  @Override
  public void Add(Component c) {
    System.out.println("Can not add to a leaf");
  }
 
  @Override
  public void Remove(Component c) {
    System.out.println("Can not remove from a leaf");
  }
 
  @Override
  public void GetChild(int depth) {
    String temp = " ";
    for (int i = 0; i < depth; i++) {
      temp += "-";
      System.out.println(temp + name);
    }
  }
 
}
 
class Composite extends Component {
 
  private List<Component> children = new ArrayList<>();
 
  public Composite(String name) {
    super(name);
  }
 
  @Override
  public void Add(Component c) {
    children.add(c);
  }
 
  @Override
  public void Remove(Component c) {
    children.remove(c);
  }
 
  @Override
  public void GetChild(int depth) {
 
    for (Component c : children) {
      c.GetChild(depth);
    }
  }
 
}
 
public class Main {
 
  public static void main(String args[]) {
    Composite root = new Composite("root");
    root.Add(new Leaf("Leaf A"));
    root.Add(new Leaf("Leaf B"));
 
    Composite compX = new Composite("Composite X");
    compX.Add(new Leaf("Leaf XA"));
    compX.Add(new Leaf("Leaf XB"));
    root.Add(compX);
 
    Composite compXY = new Composite("Composite XY");
    compXY.Add(new Leaf("Leaf XYA"));
    compXY.Add(new Leaf("Leaf XYB"));
    compX.Add(compXY);
 
    root.GetChild(3);
  }
 
}

应用场景

1.要求表示对象的部分-整体层次结构。
2.想要客户端忽略组合对象与单个对象的差异,客户端将统一地使用组合结构中的所有对象。

组合模式定义由Leaf对象和Composite对象组成的类结构;
使得客户端变得简单;
它使得添加或删除子部件变得很容易。

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

延伸 · 阅读

精彩推荐