• 组合模式


    学校院系展示需求

    需要在一个页面中,展示出学校的院系组成,一个学校有多个学院,一个学院有多个系

    传统方案解决学校院系展示

    在这里插入图片描述

    1. 将学院看作是学校的子类,系是学院的子类,这样实际上是站在组织大小进行分层次的
    2. 但实际上的要求是:在一个页面中展示出学校的院系组成,这样的方案不便于管理,如对学院、系的增加、删除、遍历等

    组合模式

    基本介绍

    1. 组合模式,又叫部分整体模式,他创建了对象组的树形结构,将对象那个组合成树状结构以表示整体-部分的层次关系
    2. 组合模式依据树形结构来组合对象,用来表示部分以及整体层次
    3. 组合模式数据结构型模式
    4. 组合模式使得用户对单个对象和组合对象的访问具有一致性,即组合能让客户以一直的方式处理个别对象以及组合对象

    原理

    在这里插入图片描述

    1. Component:组合中对象声明抽象,实现所有类共有的接口默认行为,用于访问和管理Component子部件,可以是抽象类和接口
    2. SubMenu:表示叶子结点,最下层的被管理者
    3. Composite:非叶子结点,用于存储子部件,实现Component中对子部件的相关操作;充当管理者,被父级管理,管理子级

    应用场景

    当需要处理的对象能够生成树形结构,而需要对树的结点和叶子进行操作时,它能够提供一直的方式,不论是结点还是叶子

    组合模式解决院系展示

    在这里插入图片描述

    /***
     * @author shaofan
     * @Description 组合模式解决院系展示问题
     */
    public class Composite {
        public static void main(String[] args) {
            Department department = new Department("软件工程","软件");
            Department department2 = new Department("计算机科学与技术","计算");
            College college1 = new College("计算机学院","计算机学院");
            College college2 = new College("艺术学院","艺术学院");
            University university = new University("xx大学","大学");
            college1.add(department);
            college1.add(department2);
            university.add(college1);
            university.add(college2);
            university.print();
        }
    }
    
    abstract class OrganizationComponent{
        private String name;
        private String desc;
    
        public OrganizationComponent(String name,String desc){
            this.name = name;
            this.desc = desc;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public String getDesc() {
            return desc;
        }
    
        public void setDesc(String desc) {
            this.desc = desc;
        }
    
        // 增加方法和修改方法默认实现,抛出不支持操作的异常
    
        protected void add(OrganizationComponent organizationComponent){
            throw new UnsupportedOperationException();
        }
    
        protected void remove(OrganizationComponent organizationComponent){
            throw new UnsupportedOperationException();
        }
    
        /**
         * 抽象的打印方法,具体有子类实现
         */
        protected abstract void print();
    }
    
    class University extends OrganizationComponent{
        List<OrganizationComponent> colleges = new ArrayList<>();
    
        public University(String name, String desc) {
            super(name, desc);
        }
    
        @Override
        protected void add(OrganizationComponent organizationComponent) {
            colleges.add(organizationComponent);
        }
    
        @Override
        protected void remove(OrganizationComponent organizationComponent) {
            colleges.remove(organizationComponent);
        }
    
        @Override
        protected void print() {
            System.out.println("----------"+getName()+"------------"+getDesc()+"---------------");
            for (OrganizationComponent college : colleges) {
                college.print();
            }
        }
    }
    
    class College extends OrganizationComponent{
        List<OrganizationComponent> departments = new ArrayList<>();
    
        public College(String name, String desc) {
            super(name, desc);
        }
    
        @Override
        protected void add(OrganizationComponent organizationComponent) {
            departments.add(organizationComponent);
        }
    
        @Override
        protected void remove(OrganizationComponent organizationComponent) {
            departments.remove(organizationComponent);
        }
        @Override
        protected void print() {
            System.out.println("------"+getName()+"------"+getDesc()+"-------");
            for (OrganizationComponent department : departments) {
                department.print();
            }
        }
    }
    
    class Department extends OrganizationComponent{
    
        public Department(String name, String desc) {
            super(name, desc);
        }
    
        // 叶子结点不实现管理方法
        
        @Override
        protected void print() {
            System.out.println(getName()+"--"+getDesc());
        }
    }
    
    • 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
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124

    源码分析

    在Java中的HashMap使用了组合模式
    在这里插入图片描述

    1. Map和AbstractMap就是一个抽象的构建,类似Component
    2. HashMap就是中间的构建,即Composite,他管理了底层的叶子结点,实现了put、putall具体的管理方法
    3. Node是HashMap的静态内部类,类似叶子结点,内部没有了put、putAll等管理方法

    总结

    1. 简化了caller的操作,caller只需要面对一致的对象而不用考虑整体部分或者结点叶子的问题
    2. 具有较强的扩展性,当需要更改组合对象时,只需要调整内部的层次关系,caller不用做出任何改动,符合开闭原则
    3. 方便创建出复杂的层次结构,caller不用例会组合里面的组成细节,容易添加结点或者叶子,从而创建出复杂的树形结构
    4. 需要遍历不同层次,或者处理的对象具有树形结构时,非常适合使用组合模式
    5. 要求较高的抽象性,如果结点和叶子有很多的差异性的话,比如很多方法和属性都不一样,不适合使用组合模式
  • 相关阅读:
    Vue 之 vue-seamless-scroll 实现简单自动无缝滚动,且添加对应点击事件的简单整理
    4.MySql安装配置(更新版)
    对比学习下的跨模态语义对齐是最优的吗?---自适应稀疏化注意力对齐机制 IEEE Trans. MultiMedia
    26.XML
    云服务器上安装 R语言 以及 RStudio Server 详细图文操作(全)
    操作系统学习笔记11 | 生磁盘的使用与管理
    Java多线程-线程的状态和线程常用方法
    iOS全埋点解决方案-采集崩溃
    【GNN】采样算法总结
    优先调节阀位,条件调节阀位
  • 原文地址:https://blog.csdn.net/m0_48468380/article/details/126267689