复合图案
来源:dev.to
时间:2024-12-21 11:16:02 229浏览 收藏
本篇文章向大家介绍《复合图案》,主要包括,具有一定的参考价值,需要的朋友可以参考一下。
什么是复合模式?
复合模式是一种结构模式,允许您将对象组合成树结构来表示整体-部分层次结构。复合让客户可以统一处理单个对象和对象组合。
在复合模式中,有子元素的元素称为节点,没有子元素的元素称为叶子。
什么时候使用它?
- 当您需要整体、部分、父子或树状层次结构时,请使用复合模式。
- 当你想让客户端统一对待树中的子节点和父节点时,请使用复合模式。
问题
我们正在尝试实现简单的文件系统。首先,我们需要文件和目录类。但随着我们的文件结构变得越来越大,客户端将很难持续检查每个对象是哪些类的实例。
文件系统是树状层次结构的完美示例,我们希望统一对待文件和目录。是时候使用复合模式了!
解决方案

客户
由于 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 list<filesystemcomponent> children;
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删除
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
132 收藏
-
394 收藏
-
376 收藏
-
174 收藏
-
130 收藏
-
480 收藏
-
274 收藏
-
487 收藏
-
426 收藏
-
407 收藏
-
139 收藏
-
393 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 543次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 516次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 500次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 485次学习