快速业务通道

Java中Decorate的三种实现方法 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-23
rollOverButton也存在与DebugButton同样的问题。从JButton派生则可能导致额外的代码,但可以保持JButton类型,如果从JComponent派生则可以更简单和直接,但它不能保持JButton类型。

Java中Decorate的三种实现方法(4)

时间:2010-12-08

也来讨论一下封装方式的优点与缺点:

优点

正如上文所述,用封装实现Decorator可以减少所需要提供的方法,降低编码量(象InputStream)。所有的优点都可以归结为这种实现方式可以得到短小精悍的类。

1 实现足够简单,并可以保持被封装对象的类型

2 每个装饰器独立于其它装饰器。

3 在许多场合,可以同时使用多个装饰器。

缺点

然而,对于那些本身有众多方法的类,使用封装也会导致非常冗长的类代码。对于可视化的对象,我们需要提供上百个方法或是牺牲装饰对象的类型。

根据GoF书中所言,封装(Wrapper)才是真正意义上的装饰器。它适用于代码短小的被装饰类。对于长的类,开发人员不得不作出抉择:是提供上百个方法以保持被装饰对象的原有类型?还是牺牲被装饰对象的类型来换取简单精炼的代码?

外挂

为了描述这种外挂的实现方式,让我们来看一下DebugButton和DebugDecorator类的实现代码:

public class DebugDecorator implements ActionListener { public void decorateDebug(JButton butt) { butt.addActonListenr(this); } public void undecorateDebug(JButton butt) { butt.removeActonListenr(this); } // ActionListener public void actionPerformed(ActionEvent evt) { JButton src = (JButton)evt.getSource(); System.out.println("debug message for button" + src); } }

方法decorateDebug()增加了一个ActionListener,方法undecorateDebug()则移除ActionListener。方法actionPerformed()负责输出debug信息。

现在,看看如何使用上面的DebugDecorator类:

DebugDecorator decor = new DebugDecorator(); . . . . . . . . JButton myButt = ... . . . . . . . . // Add external decorator decor.decorateDebug(myButt); . . . . . . . . . // Remove external decorator decor.undecorateDebug(myButt); . . . . . . . . .

同样的方式,我们可以实现RollOverDecorator类。在代码中同时使用两个装饰器可以这样:

DebugDecorator debugDecor = new DebugDecorator(); DebugDecorator rollDecor = new DebugDecorator(); . . . . . . . . JButton myButt = ... . . . . . . . . // Add debug decorator debugDecor.decorateDebug(myButt); . . . . . . . . // Add rollOver decorator rollDecor.decorateRollOver(myButt); . . . . . . . . . . . . . . . . . // Remove debug decorator debugDecor.undecorateDebug(myButt); . . . . . . . . // Remove rollOver decorator rollDecor.undecorateRollOver(myButt);

Java?DDecorateμ?èy??êμ??·?·¨(5)

ê±??:2010-12-08

×¢òa£o?ú???óò???D?μ?×°ê??÷?í?éò?μ?μ?D?μ?DD?a??2?Dèòa?ü??è?o?′ú???£

?ò???éò?ó|ó?ò???DebugDecorator??è?òa?à??JButton?£′ó?aμ?à′?μ£??úò???JVM?D??Dèòaò???DebugDecoratorêμày?′×?1?á?£??ùò?DebugDecorator?éò?êμ???aμ¥ì??£ê??£

?ò°??a??μ¥ì?3????a“μ¥ì?×°ê??÷”£??ü?éò?£¨2?ê?±?D?£?óD?àóúò???êμày?£???-?òé?μ?μ¥ì????üóDò???êμày?£

???ú?′?′??11μ?DebugDecorator£o

public class DebugDecorator implements ActionListener { ?? private static final DebugDecorator inst = new DebugDecorator(); ?? public static

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号