图解Java设计模式之组合模式
图解java设计模式之组合模式
编写程序展示一个学校院系结构 :需求是这样,要在一个页面中展示出学校的院系组成,一个学校有多个学院,一个学院有多个系。如图 :
1)将学院看做是学校的子类,系是学院的子类,这样实际上是站在组织大小来进行分层次的
2)实际上我们的要求是 :在一个页面中展示出学校的院系组成,一个学校有多个学院,一个学院有多个系,因此这种方案,不能很好实现管理操作,比如学院、系的添加,删除,遍历等
3)解决方案 :把学校、院、系是都看做是组织结构,他们之间没有继承的关系,而是一个树形结构,可以更好的实现管理操作。
1)组合模式(composite pattern),又叫部分整体模式,它创建了对象组的树形结构,将对象组合成树状结构以表示“整体-部分”的层次关系
2)组合模式依据树形结构来组合对象,用来表示部分以及整体层次
3)这种类型的设计模式属于结构型模式
4)组合模式使得用户对单个对象和组合对象的访问具有一致性,即 :组合能让客户以一致的方式处理个别对象以及组合对象。
1)component :这是组合中对象声明接口,在适当情况下,实现所有类共有的接口默认行为,用于访问和管理component子部件,component可以是抽象类或者接口
2)leaf :在组合中表示叶子节点,叶子节点没有子节点
3)composite :非叶子节点,用于存储子部件,在component接口中实现子部件的相关操作,比如增加(add),删除。
package com.example.demo.composite; public abstract class organizationcomponent { /** * 名字 */ private string name; /** * 说明 */ private string des; protected void add(organizationcomponent organizationcomponent) { // 默认实现 throw new unsupportedoperationexception(); } protected void remove(organizationcomponent organizationcomponent) { // 默认实现 throw new unsupportedoperationexception(); } public organizationcomponent(string name, string des) { super(); this.name = name; this.des = des; } public string getname() { return name; } public void setname(string name) { this.name = name; } public string getdes() { return des; } public void setdes(string des) { this.des = des; } /** * 方法print,做成抽象的,子类都需要实现 */ protected abstract void print(); } package com.example.demo.composite; import java.util.arraylist; import java.util.list; /** * university 就是 composite,可以管理college * @author zhaozhaohai * */ public class university extends organizationcomponent{ /** * 构造器 * @param name * @param des */ public university(string name, string des) { super(name, des); // todo auto-generated constructor stub } private list<organizationcomponent> organizationcomponents = new arraylist<>(); @override protected void add(organizationcomponent organizationcomponent) { // todo auto-generated method stub organizationcomponents.add(organizationcomponent); } @override protected void remove(organizationcomponent organizationcomponent) { // todo auto-generated method stub organizationcomponents.remove(organizationcomponent); } @override public string getname() { // todo auto-generated method stub return super.getname(); } @override public string getdes() { // todo auto-generated method stub return super.getdes(); } @override protected void print() { // todo auto-generated method stub system.out.println("-----------" + getname() + "-------------"); // 遍历 organizationcomponents for (organizationcomponent organizationcomponent : organizationcomponents) { organizationcomponent.print(); } } } package com.example.demo.composite; public class department extends organizationcomponent{ public department(string name, string des) { super(name, des); // todo auto-generated constructor stub } // add,remove就不用写了,因为他是叶子节点 @override public string getname() { // todo auto-generated method stub return super.getname(); } @override public string getdes() { // todo auto-generated method stub return super.getdes(); } @override protected void print() { // todo auto-generated method stub system.out.println(getname()); } } package com.example.demo.composite; import java.util.arraylist; import java.util.list; public class college extends organizationcomponent{ /** * 构造器 * @param name * @param des */ public college(string name, string des) { super(name, des); // todo auto-generated constructor stub } private list<organizationcomponent> organizationcomponents = new arraylist<>(); @override protected void add(organizationcomponent organizationcomponent) { // todo auto-generated method stub organizationcomponents.add(organizationcomponent); } @override protected void remove(organizationcomponent organizationcomponent) { // todo auto-generated method stub organizationcomponents.remove(organizationcomponent); } @override public string getname() { // todo auto-generated method stub return super.getname(); } @override public string getdes() { // todo auto-generated method stub return super.getdes(); } @override protected void print() { // todo auto-generated method stub system.out.println("-----------" + getname() + "-------------"); // 遍历 organizationcomponents for (organizationcomponent organizationcomponent : organizationcomponents) { organizationcomponent.print(); } } } package com.example.demo.composite; public class client { public static void main(string[] args) { // todo auto-generated method stub //从大到小创建对象 学校 organizationcomponent university = new university("清华大学", " 中国*大学 "); //创建 学院 organizationcomponent computercollege = new college("计算机学院", " 计算机学院 "); organizationcomponent infoengineercollege = new college("信息工程学院", " 信息工程学院 "); //创建各个学院下面的系(专业) computercollege.add(new department("软件工程", " 软件工程不错 ")); computercollege.add(new department("网络工程", " 网络工程不错 ")); computercollege.add(new department("计算机科学与技术", " 计算机科学与技术是老牌的专业 ")); infoengineercollege.add(new department("通信工程", " 通信工程不好学 ")); infoengineercollege.add(new department("信息工程", " 信息工程好学 ")); //将学院加入到 学校 university.add(computercollege); university.add(infoengineercollege); university.print(); infoengineercollege.print(); } }
说明 :
1)map就是一个抽象的构建(类似component)
2)hashmap是一个中间的构建(composite),实现/继承了相关方法put/putall
3)node是hashmap的静态内部类,类似leaf叶子节点,这里就没有put,putall
static class node<k,v> implements map.entry<k,v>
1)简化客户端操作,客户端只需要面对一致的对象而不用考虑整体部分或者节点叶子的问题。
2)具有较强的扩展性。当我们要更改组合对象时,我们只需要调整内部的层次关系,客户端不用做出任何改动。
3)方便创建出复杂的层次结构,客户端不用理会组合里面的组成细节,容易添加节点或者叶子从而创建出复杂的树形结构
4)需要遍历组织结构,或者处理的对象具有树形结构时,非常适合使用组合模式。
5)要求较高的抽象性,如果节点和叶子有很多差异性的话,比如很多方法和属性都不一样,不适合使用组合模式。
推荐阅读
-
图解Java设计模式之组合模式
-
设计模式之装饰者模式(一)
-
Java工厂模式之简单工厂,工厂方法,抽象工厂模式详解
-
Java工厂模式之简单工厂,工厂方法,抽象工厂模式详解
-
python中为其他函数添加额外功能,而不修改源代码的方式-------装饰器的使用讲解及代码示例(类似于java的装饰设计模式)
-
java设计模式----单例变形(多例)
-
Java设计模式之单例设计、多例设计
-
java设计模式之工厂设计模式(简单工厂设计模式、工厂设计模式、抽象设计模式) 博客分类: 设计模式 java 设计模式 工厂设计模式
-
java 设计模式之单例设计模式 博客分类: 设计模式
-
【转】简单工厂模式和策略模式的区别 博客分类: 设计模式 java工厂设计模式策略设计模式