当前位置:   article > 正文

设计模式:组合模式(Composite Pattern)

设计模式:组合模式(Composite Pattern)
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;

/**
 * 组合模式。
 * @author Bright Lee
 */
public class CompositePattern {

	public static void main(String[] args) {
		Component root = new Composite();
		
		Component leaf = new Leaf();
		
		root.add(leaf);
		
		root.operation();
	}

}

/**
 * Component为组合中的所有对象定义一个接口,不管是组合还是叶节点。
 */
interface Component {
	
	void operation();
	
	void add(Component component);
	
	void remove(Component component);
	
	List<Component> getChildren();
	
}

/**
 * 组合。
 */
class Composite implements Component {
	
	private LinkedHashMap<Component, Component> childrenMap = 
			new LinkedHashMap<Component, Component>();

	public void operation() {
		System.out.println("我是一个Composite,我的子节点是:");
		List<Component> children = getChildren();
		for (Component child : children) {
			child.operation();
		}
	}
	
	public void add(Component component) {
		childrenMap.put(component, component);
	}

	public void remove(Component component) {
		childrenMap.remove(component);
	}

	public List<Component> getChildren() {
		List<Component> list = 
				new ArrayList<Component>(childrenMap.values());
		return list;
	}

}

/**
 * 叶子节点。
 */
class Leaf implements Component {

	public void operation() {
		System.out.println("我是一个Leaf。");
	}

	public void add(Component component) {
	}

	public void remove(Component component) {
	}

	public List<Component> getChildren() {
		List<Component> list = 
				new ArrayList<Component>(0);
		return list;
	}

}
  • 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

运行结果:
我是一个Composite,我的子节点是:
我是一个Leaf。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/472505
推荐阅读
相关标签
  

闽ICP备14008679号