服务器之家

服务器之家 > 正文

轻松掌握java组合模式

时间:2020-06-19 11:27     来源/作者:断了联系

组合模式,将对象组合成树形结构以表示“部分-整体”的层次结构,组合模式使得用户对单个对象和组合对象的使用具有一致性,组合模式可以让客户端像修改配置文件一样简单的完成本来需要流程控制语句来完成的功能。

特点:对于递归或者类似树形的分级数据结构,可以用最简单的方式进行处理。

企业级开发和常用框架中的应用:系统目录结构和网站导航结构

下面以目录结构举例:

场景:假设我们现在有一个目录,目录下面还有子目录和文件,现在我们要查看整个目录及目录下的所有文件和创建时间

具体代码如下:

java" id="highlighter_493100">
?
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
package com.test.composite;
 
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
public class Demo {
 public static void main(String[] args) {
 
 Date d = new Date();
 Dir f1 = new Dir("我的收藏", d);
 d.setYear(2012);
 Dir f2 = new Dir("图片", d);
 Dir f3 = new Dir("音乐", d);
 
 d.setYear(2013);
 ActualFile f4 = new ActualFile("喜洋洋与灰太狼.avi", d);
 f1.add(f4);
 ActualFile f5 = new ActualFile("taiyanghua.jpg", d);
 ActualFile f6 = new ActualFile("变形精钢.jpg", d);
 f2.add(f5);
 f2.add(f6);
 f1.add(f2);
 f1.add(f3);
 
 f1.showFile();
 
 }
}
 
/**
 * 首先目录和文件都属于文件,所以我们可以抽象一个抽象文件出来
 */
interface AbstractFile {
 /**
 * 展示文件方法
 */
 public void showFile();
}
 
/**
 * 真实文件
 */
class ActualFile implements AbstractFile {
 
 private String name;
 private Date createDate;
 
 public ActualFile(String name, Date createDate) {
 this.name = name;
 this.createDate = createDate;
 }
 
 public String getName() {
 return name;
 }
 
 public void setName(String name) {
 this.name = name;
 }
 
 public Date getCreateDate() {
 return createDate;
 }
 
 public void setCreateDate(Date createDate) {
 this.createDate = createDate;
 }
 
 /**
 * 实现抽象文件类的展示文件方法
 */
 public void showFile() {
 System.out.println("文件名:"+this.name+"--创建时间:"+this.createDate.getTime());
 }
 
}
 
/**
 * 目录文件
 */
class Dir implements AbstractFile {
 
 private String name;
 private Date createDate;
 
 /**
 * 作为目录文件,会多出一个子文件列表
 */
 private List<AbstractFile> list = new ArrayList<>();
 
 public Dir(String name, Date createDate) {
 super();
 this.name = name;
 this.createDate = createDate;
 }
 
 public String getName() {
 return name;
 }
 
 public void setName(String name) {
 this.name = name;
 }
 
 public Date getCreateDate() {
 return createDate;
 }
 
 public void setCreateDate(Date createDate) {
 this.createDate = createDate;
 }
 
 /**
 * 目录文件的添加操作,为目录添加子文件或者子目录
 */
 public void add(AbstractFile f){
 this.list.add(f);
 }
 
 /**
 * 目录文件的删除操作,删除子文件或者子目录
 */
 public void remove(AbstractFile f){
 this.list.remove(f);
 }
 
 /**
 * 目录文件的获取操作,获取目录下面的子文件或者子目录
 */
 public AbstractFile getIndex(int index){
 return this.list.get(index);
 }
 
 public void showFile() {
 System.out.println("目录名:"+this.name+"--创建时间:"+this.createDate.getTime());
 for(AbstractFile f:list){
  f.showFile();
 }
 }
 
}

组合模式更像是一种遍历手段,但是这种手段也有一些限制,比如只能针对类似于树形结构的数据。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

标签:

相关文章

热门资讯

歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意
沙雕群名称大全2019精选 今年最火的微信群名沙雕有创意 2019-07-07
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分
玄元剑仙肉身有什么用 玄元剑仙肉身境界等级划分 2019-06-21
男生常说24816是什么意思?女生说13579是什么意思?
男生常说24816是什么意思?女生说13579是什么意思? 2019-09-17
返回顶部