博客
关于我
设计模式-装饰模式Decorator JAVA示例
阅读量:676 次
发布时间:2019-03-16

本文共 2661 字,大约阅读时间需要 8 分钟。

声明:本博客里面设计模式相关的文章,均是学习 《大话设计模式》 的笔记。

装饰模式Decorator,动态的给一个对象添加一些额外的职责,就增加功能来说,装饰模式比生成子类更灵活。下面是装饰模式的结构图:

基本的代码实现:

abstract class Component{

public abstract void operation();

}

class ConcreteComponent : Component{

public override void operation(){

具体对象的操作

}

}

abstract class Decorator : Component{

protected Component mComponent;

public void setComponent(Component component){

mComponent = component;

}

public override void operation(){

if(mComponent !=null){

mComponent.operation();

}

}

}

class ConcreteDecoratorA : Decorator{

private String addedState;本类的独有功能,区别与ConcreteDecoratorB

public override void operation(){

base.operation();

addedState = "New State";

具体装饰对象A的操作

}

}

class ConcreteDecoratorB :Decorator{

public override void operation(){

具体装饰对象B的操作

}

private void addeBehavior(){

}

}

客户端代码:

public static void main(String[] args){

ConcreteComponent mConcreteComponent = new ConcreteComponent();

ConcreteDecoratorA mDecoratorA = new ConcreteDecoratorA();

ConcreteDecoratorB mDecoratorB = new ConcreteDecoratorB();

mDecoratorA .setComponent(mConcreteComponent );

mDecoratorB .setComponent(mDecoratorA );

mDecoratorB .operation();

}

装饰模式是利用setComponent来对对象进行包装的,这样每个装饰对象的实现,就和如何使用这个对象分开了,每个装饰对象只关心自己的功能,不需要关心如何添加到对象链当中。

下面以装饰模式来模拟给人穿衣服的功能的具体代码:

package component.decorator;

public class Person {
private String name=null;
public Person(){
}
public Person(String name){
this.name = name;
}
public void show(){
System.out.println("dress up :"+name);
}
}

服饰类

public class Finery extends Person{

protected Person mPerson =null;
public void decorator(Person person){
this.mPerson = person;
}
@Override
public void show() {
if(mPerson != null){
mPerson.show();
}
}
}

具体服饰类

public class Tshirts extends Finery {

@Override
public void show() {
super.show();
System.out.println("dress Tshirts !");
}
}

public class BigTrouser extends Finery{

@Override
public void show(){
super.show();
System.out.println("dress big trouser!");
}
}

public class DuckHat extends Finery{

@Override
public void show(){
super.show();
System.out.println("dress Duck hat!");
}
}

客户端类

public class DressUpBaby {

public static void main(String[] args){
Person mPerson = new Person("helloBaby");
Tshirts mTshirts = new Tshirts();
BigTrouser mBigtrouser = new BigTrouser();
DuckHat mDuckHat = new DuckHat();
mTshirts.decorator(mPerson);
mBigtrouser.decorator(mTshirts);
mDuckHat.decorator(mBigtrouser);
mDuckHat.show();这里实际上是通过super.show()做的一个递归调用!
}
}

输出结果:

dress up :helloBaby

dress Tshirts !

dress big trouser!
dress Duck hat!

装饰模式使为已有功能动态的添加更多功能的一种方式。它把每个要装饰的功能放在单独的类中,并让这个类包装它所要装饰的对象,客户端代码可以在运行时根据需要有选择的,按顺序的使用装饰功能包装对象。

优点就是把类中的装饰功能从类中搬移出去,这样可以简化原有的类。有效的把类的核心职责和装饰功能区分开了,而且去除了相关类中重复的装饰逻辑。

你可能感兴趣的文章
mysql /*! 50100 ... */ 条件编译
查看>>
mysql 1045解决方法
查看>>
mudbox卸载/完美解决安装失败/如何彻底卸载清除干净mudbox各种残留注册表和文件的方法...
查看>>
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>
mui折叠面板点击事件跳转
查看>>
MySQL 8 公用表表达式(CTE)—— WITH关键字深入用法
查看>>
mysql 8 远程方位_mysql 8 远程连接注意事项
查看>>
MUI框架里的ajax的三种方法
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>
Mysql 8.0 新特性
查看>>
MultCloud – 支持数据互传的网盘管理
查看>>
MySQL 8.0.23中复制架构从节点自动故障转移
查看>>
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>