- 浏览: 25629 次
- 性别:
- 来自: 上海
文章分类
将对象组合成树型结构以表示“部分-整体”的层次结构。组合模式使得用户对单个对象和组合对象的使用具有一致性。
public abstract class Component {
public abstract void someOperation();
public void addChild(Component child) {
throw new UnsupportedOperationException("不支持");
}
public void removeChild(Component child) {
throw new UnsupportedOperationException("不支持");
}
public Component getChildren(int index) {
throw new UnsupportedOperationException("不支持");
}
}
public class Composite extends Component {
private List<Component> childComponents = null;
public void someOperation() {
if(childComponents != null) {
for(Component component : childComponents) {
component.someOperation();
}
}
}
public void addChild(Component child) {
if(childComponents == null) {
childComponents = new ArrayList<Component>();
}
childComponents.add(child);
}
public void removeChild(Component child) {
if(childComponents == null) {
childComponents = new ArrayList<Component>();
}
childComponents.remove(child);
}
public Component getChildren(int index) {
if(childComponents == null) {
if(index >= 0 && index < childComponents.size()) {
return childComponents.get(index);
}
}
return null;
}
}
public class Leaf extends Component {
public void someOperation() {
//
}
}
客户端代码:
Component root = new Composite();
Component c1 = new Composite();
Component c2 = new Composite();
Component leaf1 = new Leaf();
Component leaf2 = new Leaf();
Component leaf3 = new Leaf();
root.addChild(c1);
root.addChild(c2);
root.addChild(leaf1);
c1.addChild(leaf2);
c2.addChild(leaf3);
Component o = root.getChildren(1);
System.out.println(o);
public abstract class Component {
public abstract void someOperation();
public void addChild(Component child) {
throw new UnsupportedOperationException("不支持");
}
public void removeChild(Component child) {
throw new UnsupportedOperationException("不支持");
}
public Component getChildren(int index) {
throw new UnsupportedOperationException("不支持");
}
}
public class Composite extends Component {
private List<Component> childComponents = null;
public void someOperation() {
if(childComponents != null) {
for(Component component : childComponents) {
component.someOperation();
}
}
}
public void addChild(Component child) {
if(childComponents == null) {
childComponents = new ArrayList<Component>();
}
childComponents.add(child);
}
public void removeChild(Component child) {
if(childComponents == null) {
childComponents = new ArrayList<Component>();
}
childComponents.remove(child);
}
public Component getChildren(int index) {
if(childComponents == null) {
if(index >= 0 && index < childComponents.size()) {
return childComponents.get(index);
}
}
return null;
}
}
public class Leaf extends Component {
public void someOperation() {
//
}
}
客户端代码:
Component root = new Composite();
Component c1 = new Composite();
Component c2 = new Composite();
Component leaf1 = new Leaf();
Component leaf2 = new Leaf();
Component leaf3 = new Leaf();
root.addChild(c1);
root.addChild(c2);
root.addChild(leaf1);
c1.addChild(leaf2);
c2.addChild(leaf3);
Component o = root.getChildren(1);
System.out.println(o);
发表评论
-
访问者模式Visitor预留通路,回调实现
2014-03-13 16:55 377表示一个作用于某对象结构中的各元素的操作。它使你可以在不改变各 ... -
桥接模式Bridge分离抽象和实现
2014-03-13 16:55 490将抽象部分与它的实现部分分离,使它们都可以独立地变化。 桥接 ... -
职责链模式Chain of Responsibility分离职责,动态组合
2014-03-12 17:25 341使多个对象都有机会处 ... -
装饰模式Decorator动态组合
2014-03-12 17:00 276动态地给一个对象添加 ... -
解释器模式Interpreters分离实现,解释执行
2014-03-12 16:27 294给定一个语言,定义它的文法的一种表示,并定义一个解释器,这个解 ... -
享元模式Flyweight分离与共享
2014-03-12 13:20 301运用共享技术有效地支持大量细粒度的对象。 安全实体:就是被系 ... -
备忘录模式Memento保存和回复内部状态
2014-03-11 17:47 432在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外 ... -
状态模式State根据状态来分离和选择行为
2014-03-11 17:20 398允许一个对象在其内部状态改变时改变它的行为。对象看起来似乎修改 ... -
策略模式Strategy分离算法,选择实现
2014-03-11 15:26 417迪米特法则:LoD,最少知识原则。 如果两个类不必彼此直接通信 ... -
模板方法模式Templete Method 固定算法骨架
2014-03-11 11:15 537定义一个操作中的算法的骨架,而将一些步骤延迟到子类中。模板方法 ... -
迭代器模式Iterator 控制访问聚合对象中的元素
2014-03-07 17:57 410提供一种方法顺序访问一个聚合对象中的各个元素,而又不需要暴露该 ... -
命令模式Command 封装请求
2014-03-07 16:26 379将一个请求封装为一个对象,从而使你可用不同的请求对客户进行参数 ... -
观察者模式Observer订阅模式-触发联动
2014-03-07 11:19 383定义对象间的一种一对 ... -
代理模式Proxy 为别人做嫁衣(控制对象访问)
2014-03-06 00:39 331为其他对象提供一种代理以控罪对这个对象的访问。 代理大致被分为 ... -
中介者模式Mediator 封装交互
2014-03-06 00:19 370用一个中介对象来封装 ... -
原型模式Prototype 克隆生成对象
2014-03-06 00:19 566用原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象 ... -
生成器模式Builder 分离整体构建算法和部件构造
2014-03-06 00:19 307将一个复杂对象的构建与它的表示分离,使得同样的构建过程可以创建 ... -
抽象工厂模式 Abstract Factory 选择产品簇的实现
2014-03-06 00:20 417工厂方法模式或简单工 ... -
工厂方法模式Factory Method延迟到子类来选择实现
2014-03-05 18:12 950定义一个用于创建对象 ... -
单例模式Singleton某个类只需要一个类实例
2014-03-05 16:46 426保证一个类只有一个实例,并提供一个访问它的全局访问点。 懒汉 ...
相关推荐
- 在某些情况下,可能需要为组合对象和叶子对象提供不同的接口,这时组合模式可能不太适用。 在实际应用中,组合模式常用于UI组件的构建,文件系统的组织,以及任何需要表示部分-整体关系的场景。例如,在UI设计中...
2. **抽象层次结构**:当需要将不同的对象层次结构统一处理时,组合模式可以提供一种统一的访问接口,使得客户端代码可以一致地对待单个对象和组合对象。 #### 三、原理与实现 **组合模式的关键在于定义了一个共同...
组合模式使得客户端可以以统一的方式对待单个对象和组合对象,这种模式常用于需要处理树形结构的数据,如文件系统、图形界面等。 组合模式的组成 1、组件接口(Component):定义叶子和组合对象的共同接口。 2、...
在C#编程中,组合模式常常被用来处理树形结构的数据,使得客户端代码能够统一地处理单个对象和对象的集合。 在组合模式中,我们定义了两个主要的角色:Component(组件)和Composite(组合)。Component 是一个抽象...
这意味着客户端可以对组合对象和单个对象进行相同的操作,而无需了解它们的具体类型。 - **递归结构**:组合对象可以包含其他组合对象,从而形成递归的数据结构。这种结构使得我们能够以统一的方式处理整个树。 - ...
组合模式(Composite Pattern)是一种对象结构型模式,其定义是将多个对象组合成树形结构以表示“整体-部分”关系的层次结构。它使得客户端对单个对象和组合对象的使用具有一致性。在组合模式中,对象被组织成树形...
组合模式是一种结构型设计模式,它将对象组织成树形结构,使得用户可以对单个对象和对象集合进行统一操作。这种模式在处理部分与整体关系时非常有用,允许我们一致地处理单个对象和对象容器。组合模式的关键在于...
组合模式是软件工程中的一种结构型设计模式,它允许我们以树形结构来表示部分与整体的关系,使得客户端代码可以一致地处理单个对象和对象组合。在组合模式中,部分和整体通过统一的接口进行交互,这种“部分”和...
1. **一致性**:客户端代码可以统一处理组合对象和单个对象,简化了客户端代码。 2. **灵活性**:组合模式允许动态地添加或移除组件,增加了系统扩展性。 3. **层次结构**:通过组合模式,可以轻松地创建复杂的树形...
组合模式是一种设计模式,它将对象组织成树形结构,使得用户可以统一处理单个对象和对象集合。在本实验中,我们将深入探讨组合模式的原理、实现方式以及其在实际编程中的应用。 首先,我们要理解组合模式的核心概念...
组合模式使得用户可以对单个对象和组合对象进行一致性的操作处理,即客户程序可以像操作单个对象一样来操作组合对象,而无需关心自己处理的是单一对象还是组合对象。 #### 三、组合模式原理 组合模式的核心思想是...
组合模式是一种结构型设计模式,它允许我们使用树形结构来表示部分与整体的关系,使得我们能够以统一的方式来处理单个对象和对象的组合。在组合模式中,单个对象和组合对象都被视为同一类型,这使得客户端代码可以对...
组合模式是一种设计模式,属于结构型模式,它允许我们以统一的方式处理单个对象和对象的集合。在软件工程中,这种模式常用于构建树形结构,使得客户端代码可以一致地处理单个对象和组合对象,而无需关心它们的具体...
组合模式,也称为树形模式,是一种结构型设计模式,它允许我们表示部分-整体层次结构,使得客户端代码可以统一地处理单个对象和对象集合。这种模式将对象组织成树形结构,允许用户对部分或整个树进行操作,简化了...
组合模式(Composite Pattern)是一种结构型设计模式,它允许我们构建部分-整体层次结构,使得客户端可以一致地处理单个对象和对象组合。在PHP中,组合模式通常用于表示具有树形结构的数据,比如目录结构、组织结构...
组合模式是一种设计模式,它属于结构型模式,主要目的是为了将对象组织成树形结构,使得用户可以统一地处理单个对象和对象集合。在Java中,组合模式可以帮助我们实现部分与整体的层次结构,使得客户端代码可以一致地...
这种模式的关键在于“叶子”对象和“容器”对象具有相同的接口,这样在操作上可以做到统一。 在《Head First 设计模式》一书中,作者通过生动有趣的例子来讲解这两种模式。对于迭代器模式,可能会通过模拟一个菜单...