复合图案
来源:dev.to
2024-12-21 11:16:02
0浏览
收藏
本篇文章向大家介绍《复合图案》,主要包括,具有一定的参考价值,需要的朋友可以参考一下。
什么是复合模式?
复合模式是一种结构模式,允许您将对象组合成树结构来表示整体-部分层次结构。复合让客户可以统一处理单个对象和对象组合。
在复合模式中,有子元素的元素称为节点,没有子元素的元素称为叶子。
什么时候使用它?
- 当您需要整体、部分、父子或树状层次结构时,请使用复合模式。
- 当你想让客户端统一对待树中的子节点和父节点时,请使用复合模式。
问题
我们正在尝试实现简单的文件系统。首先,我们需要文件和目录类。但随着我们的文件结构变得越来越大,客户端将很难持续检查每个对象是哪些类的实例。
文件系统是树状层次结构的完美示例,我们希望统一对待文件和目录。是时候使用复合模式了!
解决方案
客户
由于 filesystemcomponent,客户端不关心对象是文件还是目录的实例。此外,客户端不必编写 if 语句来确定他是否在正确的对象上调用正确的方法。文件系统组件
文件和目录被客户端视为文件系统组件。 filesystemcomponent 定义方法的默认行为,默认行为可以是异常、不执行任何操作、返回 null 或 false,任何对您的应用程序有意义的行为。文件
这是我们的叶子,重写打印方法,打印其名称和内容。目录
这是我们的节点,重写添加、删除、获取子节点的方法。 print 方法打印出它的名称并调用子组件的 print 方法,这样 client 就不需要调用每个组件的 print 方法。
结构
java实现
public abstract class filesystemcomponent { protected string name; public filesystemcomponent(string name) { this.name = name; } public string getname() { return name; } public void print(int indentlevel) { throw new unsupportedoperationexception(); } public void add(filesystemcomponent component) { throw new unsupportedoperationexception(); } public void remove(int index) { throw new unsupportedoperationexception(); } // instead of throwing exception, we do nothing by default. // doing nothing makes sense because leaf has no child. public void getchildren() { } }
public class file extends filesystemcomponent { private string content; public file(string name, string content) { super(name); this.content = content; } @override public void print(int indentlevel) { string indent = " ".repeat(indentlevel); system.out.println(indent + name + ": " + content); } }
public class directory extends filesystemcomponent { private listchildren; public directory(string name) { super(name); children = new arraylist<>(); } @override public void print(int indentlevel) { string indent = " ".repeat(indentlevel); system.out.println(indent + name + " directory:"); for (filesystemcomponent child : children) { child.print(indentlevel + 2); } } @override public void add(filesystemcomponent component) { children.add(component); } @override public void remove(int index) { children.remove(index); } @override public void getchildren() { if (children.isempty()) { return; } stringbuilder builder = new stringbuilder("["); for (filesystemcomponent child : children) { builder.append(child.getname() + ", "); } builder.delete(builder.length() - 2, builder.length()); builder.append("]"); system.out.println(builder); } }
public class filesystemtestdrive { public static void main(string[] args) { filesystemcomponent rootdirectory = new directory("root"); filesystemcomponent fruitsdirectory = new directory("fruits"); filesystemcomponent animaldirectory = new directory("animal"); filesystemcomponent felinedirectory = new directory("feline"); rootdirectory.add(fruitsdirectory); rootdirectory.add(animaldirectory); fruitsdirectory.add(new file("appple", "red and juicy.")); fruitsdirectory.add(new file("banana", "yellow and sweet.")); fruitsdirectory.add(new file("lemon", "yellow and sour.")); animaldirectory.add(felinedirectory); felinedirectory.add(new file("lion", "king of animal.")); felinedirectory.add(new file("tiger", "has cool color pattern.")); rootdirectory.print(0); rootdirectory.getchildren(); rootdirectory.remove(0); rootdirectory.getchildren(); // what happens we call getchildren() on leaf? (we don't override the method in leaf class) filesystemcomponent file = new file("sample", "this is leaf"); file.getchildren(); // leaf calls default behavior, doing nothing } }
输出:
Root directory: Fruits directory: Appple: red and juicy. Banana: yellow and sweet. Lemon: yellow and sour. Animal directory: Feline directory: Lion: King of animal. Tiger: Has cool color pattern. [Fruits, Animal] [Animal]
陷阱
- 如果您想要一个组合使其子级保持特定顺序,则需要更复杂的管理方案来添加、删除和遍历子级。
- 随着复合结构变得更大、更复杂,遍历的成本会更高。在这种情况下,您可能会考虑实现一个缓存来存储一些数据以节省遍历。
您可以在这里查看所有设计模式的实现。
github 存储库
好了,本文到此结束,带大家了解了《复合图案》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多文章知识!
版本声明
本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除

- 上一篇
- win10右键菜单管理在哪打开 win10右键菜单管理打开位置

- 下一篇
- Day - 切片、for 循环和嵌套循环
查看更多
最新文章
-
- 文章 · java教程 | 13小时前 |
- 反序输出字符串:填码验证算法小练习
- 278浏览 收藏
-
- 文章 · java教程 | 18小时前 |
- Java非C语言开发,揭秘Java技术实现
- 236浏览 收藏
-
- 文章 · java教程 | 1天前 |
- Java学习必备知识体系结构详解
- 237浏览 收藏
-
- 文章 · java教程 | 1天前 |
- 若依框架MyBatis依赖配置及查找方法
- 194浏览 收藏
-
- 文章 · java教程 | 1天前 |
- Java非C语言开发,揭秘Java技术实现
- 287浏览 收藏
查看更多
课程推荐
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 484次学习
查看更多
AI推荐
-
- 笔灵AI生成答辩PPT
- 探索笔灵AI生成答辩PPT的强大功能,快速制作高质量答辩PPT。精准内容提取、多样模板匹配、数据可视化、配套自述稿生成,让您的学术和职场展示更加专业与高效。
- 29次使用
-
- 知网AIGC检测服务系统
- 知网AIGC检测服务系统,专注于检测学术文本中的疑似AI生成内容。依托知网海量高质量文献资源,结合先进的“知识增强AIGC检测技术”,系统能够从语言模式和语义逻辑两方面精准识别AI生成内容,适用于学术研究、教育和企业领域,确保文本的真实性和原创性。
- 43次使用
-
- AIGC检测-Aibiye
- AIbiye官网推出的AIGC检测服务,专注于检测ChatGPT、Gemini、Claude等AIGC工具生成的文本,帮助用户确保论文的原创性和学术规范。支持txt和doc(x)格式,检测范围为论文正文,提供高准确性和便捷的用户体验。
- 40次使用
-
- 易笔AI论文
- 易笔AI论文平台提供自动写作、格式校对、查重检测等功能,支持多种学术领域的论文生成。价格优惠,界面友好,操作简便,适用于学术研究者、学生及论文辅导机构。
- 51次使用
-
- 笔启AI论文写作平台
- 笔启AI论文写作平台提供多类型论文生成服务,支持多语言写作,满足学术研究者、学生和职场人士的需求。平台采用AI 4.0版本,确保论文质量和原创性,并提供查重保障和隐私保护。
- 43次使用
查看更多
相关文章
-
- 提升Java功能开发效率的有力工具:微服务架构
- 2023-10-06 501浏览
-
- 掌握Java海康SDK二次开发的必备技巧
- 2023-10-01 501浏览
-
- 如何使用java实现桶排序算法
- 2023-10-03 501浏览
-
- Java开发实战经验:如何优化开发逻辑
- 2023-10-31 501浏览
-
- 如何使用Java中的Math.max()方法比较两个数的大小?
- 2023-11-18 501浏览