首页 > 其他 > 详细

装饰模式

时间:2014-05-26 02:21:52      阅读:337      评论:0      收藏:0      [点我收藏+]

意图

Attach  additional  responsibilities  to  an  object  dynamically.  Decorators  provide a flexible alternative to subclassing for extending functionality.

动态地为对象添加额外的职责。装饰者模式在扩展功能方面提供一个比子类化更灵活的选择。

其类图如下:

bubuko.com,布布扣

适用范围:

1. to add responsibilities to individual objects dynamically and transparently, that is, without affecting other objects.

    动态地、透明地为单个对象添加职责,而不影响其他对象。
2. for responsibilities that can be withdrawn.

    可以被撤销的职责。
3. when  extension  by  subclassing  is  impractical.  Sometimes  a  large  number  of independent extensions are possible and would produce an explosion of subclasses  to  support  every  combination.  Or a class  definition  may  be  hidden or otherwise unavailable for subclassing.

   当用子类扩展不切实际时。即,用子类扩展功能是可能的,但是为支持每一种功能的组合将会引子类数量的爆长。或者类的定义被隐藏或不能够被子类化。

装饰模式,布布扣,bubuko.com

装饰模式

原文:http://www.cnblogs.com/wayhow/p/3749377.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!