DesignPattern_Java:Composite Pattern

组合模式 Composite Pattern 合成模式

compose objects into tree structures to represent part-whole hierarchies.Composite lets clients treat individual objects and compositions of objects uniformly.

将对象组合成树形结构以表示“部分-整体”的层次结构,使得用户对单个对象和组合对象的使用具有一致性。

抽象构件角色(Component):该角色定义参加组合对象的共有方法和属性,规范一些默认的行为接口。

package com.DesignPattern.Structural.Composite;

//定义抽象构建接口

public interface Component {

public void operation();

}

叶子构件角色(Leaf):该角色是叶子对象,其下没有其他的分支,定义出参加组合的原始对象的行为。

package com.DesignPattern.Structural.Composite;
//定义叶子构件
public class Leaf implements Component {
    @Override
    public void operation() {
        //业务逻辑代码
        System.out.println("Leaf operation");
    }
}

树枝构件角色(Composite):该角色代表参加组合的、其下的分支的树枝对象,他的作用是将树枝和叶子组合成一个树形结构,并定义出管理子对象的方法,如add()、remove()等。

package com.DesignPattern.Structural.Composite;

import java.util.ArrayList;

//定义树枝构件
public class Composite implements Component {
    // 构件容器
    private ArrayList<Component> componentList = new ArrayList<Component>();

    // 添加构件
    public void add(Component component) {
        this.componentList.add(component);
    }

    // 删除构件
    public void remove(Component component) {
        this.componentList.remove(component);
    }

    // 获取子构件
    public ArrayList<Component> getChild() {
        return this.componentList;
    }

    @Override
    public void operation() {
        // 业务逻辑代码
        System.out.println("Composite operation");
    }
}

Client

package com.DesignPattern.Structural.Composite;

public class Client {

    public static void main(String[] args) {
        // 创建一个根节点
        Composite root = new Composite();
        root.operation();
        // 创建树枝节点
        Composite branch = new Composite();
        // 创建叶子节点
        Leaf leaf = new Leaf();
        // 构件树形结构
        root.add(branch);
        branch.add(leaf);
        display(root);
    }

    // 遍历树(递归)
    public static void display(Composite root) {
        for (Component c : root.getChild()) {
            if (c instanceof Leaf) { // 如果节点类型是叶子节点
                c.operation();
            } else { // 树枝节点
                c.operation();
                display((Composite) c); // 递归调用
            }
        }
    }
}

组合模式的实例

Company.java

package com.DesignPattern.Structural.Composite;
//抽象接口
public interface Company {
    //获取信息
    public String getInfo();
}

ConcreteCompany.java

package com.DesignPattern.Structural.Composite;

import java.util.ArrayList;
//树枝节点类
public class ConcreteCompany implements Company {

    private ArrayList<Company> companyList = new ArrayList<Company>();
    private String name;
    private String position;
    private int salary;
    //构造函数
    public ConcreteCompany(String name, String position, int salary) {
        this.name = name;   //姓名
        this.position = position; //职位
        this.salary = salary;   //薪水
    }
    public void add(Company company){
        this.companyList.add(company);
    }
    public void remove(Company company){
        this.companyList.remove(company);
    }
    public ArrayList<Company> getChild(){
        return this.companyList;
    }
    @Override
    public String getInfo() {
        String info="";
        info="名称:"+this.name;
        info=info+"\t职位:"+this.position;
        info=info+"\t薪水:"+this.salary;
        return info;
    }

}

Employee.java

package com.DesignPattern.Structural.Composite;
//叶子节点类
public class Employee implements Company {

    private String name;
    private String position;
    private int salary;

    public Employee(String name, String position, int salary) {
        this.name = name;
        this.position = position;
        this.salary = salary;
    }

    @Override
    public String getInfo() {
        String info="";
        info="名称:"+this.name;
        info=info+"\t职位:"+this.position;
        info=info+"\t薪水:"+this.salary;
        return info;
    }

}

ClientDemo.java

package com.DesignPattern.Structural.Composite;

public class ClientDemo {

    public static void main(String[] args){
        //CEO
        ConcreteCompany root=new ConcreteCompany("Hello","CEO",100000);
        //部门经理
        ConcreteCompany developDep=new ConcreteCompany("developDep","研发部经理",12000);
        ConcreteCompany salesDep=new ConcreteCompany("salesDep","销售部经理",12000);
        ConcreteCompany financeDep=new ConcreteCompany("financeDep","财务部经理",12000);
        //部门员工
        Employee e1=new Employee("A","研发部",3000);
        Employee e2=new Employee("B","研发部",3000);
        Employee e3=new Employee("C","销售部",3000);
        Employee e4=new Employee("D","销售部",3000);
        Employee e5=new Employee("E","财务部",3000);
        Employee e6=new Employee("F","财务部",3000);
        //生成树
        root.add(developDep);
        root.add(salesDep);
        root.add(financeDep);
        developDep.add(e1);
        developDep.add(e2);
        salesDep.add(e3);
        salesDep.add(e4);
        financeDep.add(e5);
        financeDep.add(e6);
        System.out.println(root.getInfo());
        display(root);
    }
    //遍历树(递归)
    public static void display(ConcreteCompany root){
        for(Company c:root.getChild()){
            if(c instanceof Employee){  //如果节点类型是叶子节点
                System.out.println(c.getInfo());
            }else{      //树枝节点
                System.out.println("\n"+c.getInfo());
                display((ConcreteCompany)c);    //递归调用
            }
        }
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载|Copyright ©2011-2015,Supernatural, All Rights Reserved.

时间: 2024-09-28 20:38:05

DesignPattern_Java:Composite Pattern的相关文章

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

什么是组合模式呢?简单来说组合模式就是将对象合成树形结构以表示"部分整体"的层次结构,组合模式使用户对单个对象和组合对象使用具有一致性. 组合模式(Composite Pattern)有时候又叫部分-整体模式,它使我们在树型结构的问题中,模糊了简单元素和负责元素的概念,客户程序可以向处理简单元素一样处理负责元素,从而使得客户程序与复杂元素的的内部结构解耦. 组合模式让你可以优化处理递归或分级数据结构.关于分级数据结构的一个经典例子就是电脑中的文件系统.文件系统由目录和文件组成,所有目录

设计模式 - 组合模式(composite pattern) 详解

组合模式(composite pattern) 详解 本文地址: http://blog.csdn.net/caroline_wendy 组合模式: 允许你将对象组合成树形结构来表现"整体/部分"层次结构. 组合能让客户以一致的方法处理个别对象以及组合对象. 建立组件类(Component), 组合类(composite)和叶子类(leaf)继承组件类, 客户类(client)直接调用最顶层的组合类(composite)即可. 具体方法: 1. 组件类(component), 包含组合

设计模式 - 组合模式(composite pattern) 迭代器(iterator) 详解

组合模式(composite pattern) 迭代器(iterator) 详解 本文地址: http://blog.csdn.net/caroline_wendy 参考组合模式(composite pattern): http://blog.csdn.net/caroline_wendy/article/details/36895627 在组合模式(composite pattern)添加迭代器功能, 遍历每一个组合(composite)的项. 具体方法: 1. 抽象组件类(abstract

第 15 章 组合模式【Composite Pattern】

以下内容出自:<<24种设计模式介绍与6大设计原则>> 大家在上学的时候应该都学过“数据结构”这门课程吧,还记得其中有一节叫“二叉树”吧,我们上 学那会儿这一章节是必考内容,左子树,右子树,什么先序遍历后序遍历什么,重点就是二叉树的的遍历,我还记得当时老师就说,考试的时候一定有二叉树的构建和遍历,现在想起来还是觉的老师是正确的,树状结果在实际项目应用的非常广泛. 咱就先说个最常见的例子,公司的人事管理就是一个典型的树状结构,你想想你公司的结构是不是这样: 老大,往下一层一层的管理,

第9章 组合模式(Composite Pattern)

原文 第9章 组合模式(Composite Pattern) 概述: 组合模式有时候又叫做部分-整体模式,它使我们树型结构的问题中,模糊了简单元素和复杂元素的概念,客户程序可以向处理简单元素一样来处理复杂元素,从而使得客户程序与复杂元素的内部结构解耦. 将对象组合成树形结构以表示"部分-整体"的层次结构.Composite模式使得用户对单个对象和组合对象的使用具有一致性.[GOF <设计模式>] 结构图: 举例: 假设我们公司有做个打卡的程序,能满足各种打卡的需要,比如整个

NET设计模式 第二部分 结构性模式(10):组合模式(Composite Pattern)

组合模式(Composite Pattern) ——.NET设计模式系列之十一 Terrylee,2006年3月 概述 组合模式有时候又叫做部分-整体模式,它使我们树型结构的问题中,模糊了简单元素和复杂元素的概念,客户程序可以向处理简单元素一样来处理复杂元素,从而使得客户程序与复杂元素的内部结构解耦. 意图 将对象组合成树形结构以表示“部分-整体”的层次结构.Composite模式使得用户对单个对象和组合对象的使用具有一致性.[GOF <设计模式>] 结构图 图1 Composite模式结构图

设计模式之组合模式---Composite Pattern

模式的定义 组合模式(Composite Pattern)定义如下: Compose objects into tree structures to represent part-whole hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly. 将对象组合成树形结构以表示"部分-整体"的层次结构,使得用户对单个对象和组合对象的使用具有一致性.

C#设计模式之九组合模式(Composite Pattern)【结构型】

原文:C#设计模式之九组合模式(Composite Pattern)[结构型] 一.引言 今天我们要讲[结构型]设计模式的第四个模式,该模式是[组合模式],英文名称是:Composite Pattern.当我们谈到这个模式的时候,有一个物件和这个模式很像,也符合这个模式要表达的意思,那就是"俄罗斯套娃"."俄罗斯套娃"就是大的瓷器娃娃里面装着一个小的瓷器娃娃,小的瓷器娃娃里面再装着更小的瓷器娃娃,直到最后一个不能再装更小的瓷器娃娃的那个瓷器娃娃为止(有点绕,下面我会

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

一,C#设计模式:组合模式(Composite Pattern) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _9.组合模式 { //组合模式主要用来处理一类具有"容器特征"的对象--即它们在充当对象的同时,又可以作为容器包含其他多个对象. //组合模式,将对象组合成树形结构以表示