本文内容来源于网络收集
作者:冰河
来源:冰河技术公众号
- 本章难度:★★☆☆☆
- 本章重点:用最简短的篇幅介绍装饰模式最核心的知识,理解装饰模式的设计精髓,并能够灵活运用到实际项目中,编写可维护的代码。
一、概述
动态地给一个对象添加一些额外的职责。就增加功能来说,Decorator模式相比生成子类更为灵活。
二、适用性
1.在不影响其他对象的情况下,以动态、透明的方式给单个对象添加职责。
2.处理那些可以撤消的职责。
3.当不能采用生成子类的方法进行扩充时。
三、参与者
1.Component 定义一个对象接口,可以给这些对象动态地添加职责。
2.ConcreteComponent 定义一个对象,可以给这个对象添加一些职责。
3.Decorator 维持一个指向Component对象的指针,并定义一个与Component接口一致的接口。
4.ConcreteDecorator 向组件添加职责。
四、类图
五、示例
Component
1
2
3
4
5
6
7
8
9
10
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description Component接口Person
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public interface Person {
void eat();
}
|
ConcreteComponent
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description Person接口的实现类Man
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public class Man implements Person{
@Override
public void eat() {
System.out.println("男人在吃");
}
}
|
Decorator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description Decorator抽象类实现Person接口
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public abstract class Decorator implements Person{
protected Person person;
public void setPerson(Person person) {
this.person = person;
}
public void eat() {
person.eat();
}
}
|
ConcreteDecorator
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description Decorator的子类
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public class ManDecoratorA extends Decorator{
@Override
public void eat() {
super.eat();
reEat();
System.out.println("ManDecoratorA类");
}
public void reEat() {
System.out.println("再吃一顿饭");
}
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description Decorator的子类
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public class ManDecoratorB extends Decorator{
@Override
public void eat() {
super.eat();
System.out.println("===============");
System.out.println("ManDecoratorB类");
}
}
|
Test
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @author binghe(微信 : hacker_binghe)
* @version 1.0.0
* @description 测试类
* @github https://github.com/binghe001
* @copyright 公众号: 冰河技术
*/
public class Test {
public static void main(String[] args) {
Man man = new Man();
ManDecoratorA md1 = new ManDecoratorA();
ManDecoratorB md2 = new ManDecoratorB();
md1.setPerson(man);
md2.setPerson(md1);
md2.eat();
}
}
|
Result
1
2
3
4
5
|
男人在吃
再吃一顿饭
ManDecoratorA类
===============
ManDecoratorB类
|