概述
装饰模式 (Decorator Pattern) 又称包装器,与适配器模式别名一样,但使用的目的不同。它动态地给一个对象添加职责,相比于通过继承添加职责更加灵活。也称“油漆工”模式(视翻译而定)。
优点:扩展对象功能的同时提高了灵活性,符合“开闭原则”。
缺点:增加系统的复杂性。
interface Component {
void a();
}
class ComponentImpl implements Component {
void a() {
//
}
}
class Decorator implements Component {
Component cpn;
void a() {
cpn.a();
}
}
class DecoratorA extends Decorator {
void a() {
super.a();
}
void b() {
//
}
}
图示:
透明模式:只允许声明抽象类型,使用抽象类型定义的方法。
半透明模式:允许声明具体类型,使用具体类型新增的方法。
参考
标签:11,implements,void,Component,模式,class,装饰,Decorator From: https://www.cnblogs.com/xdreamc/p/16462158.html[1]. 刘伟, 设计模式. 2011.