装饰(Decorator)模式

系统 1621 0

装饰(Decorator)模式又名包装(Wrapper)模式。装饰模式以对客户端透明的方式扩展对象的功能,是继承关系的一个替代方案。

一,结构

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

抽象构件(Component)角色: 给出一个抽象接口,以规范准备接收附加责任的对象。

具体构件(Concrete Component)角色: 定义一个将要接收附加责任的类。

装饰(Decorator)角色: 持有一个构件(Component)对象的实例,并定义一个与抽象构件接口一致的接口。

具体装饰(Concrete Decorator)角色: 负责给构件对象"贴上"附加的责任。

二,示例代码

    /**
 * 抽象构件
 * @author Salmon
 *
 */
public interface Component {
	public void operation();
}

/**
 * 具体构件
 * @author Salmon
 *
 */
public class ConcreteComponent implements Component {
	public void operation() {
		System.out.println("ConcreteComponent.Operation()");
	}
}

/**
 * 装饰(即组合又继承)
 * @author Salmon
 *
 */
public class Decorator implements Component {
	protected Component component;

	public void setComponent(Component component) {
		this.component = component;
	}

	public void operation() {
		if (component != null)
			component.operation();
	}
}

/**
 * 具体装饰
 * @author Salmon
 *
 */
public class ConcreteDecoratorA extends Decorator {
	private String addedState;

	public void operation() {
		super.operation();
		addedState = "new state";
		System.out.println("ConcreteDecoratorA.Operation()");
	}
}

/**
 * 具体装饰
 * @author Salmon
 *
 */
public class ConcreteDecoratorB extends Decorator {
	public void operation() {
		super.operation();
		AddedBehavior();
		System.out.println("ConcreteDecoratorB.Operation()");
	}

	private void AddedBehavior() {
		System.out.println("new state");
	}
}

/**
 * 客户代码
 * @author Salmon
 *
 */
public class Client {
	public static void main(String[] args) {
		ConcreteComponent c = new ConcreteComponent();
		ConcreteDecoratorA d1 = new ConcreteDecoratorA();
		ConcreteDecoratorB d2 = new ConcreteDecoratorB();
		d1.setComponent(c);
		d2.setComponent(d1);
		d2.operation();
	}
}
  

 

装饰(Decorator)模式


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论