设计模式
文章平均质量分 82
luoxin1992
这个作者很懒,什么都没留下…
展开
-
设计模式之观察者(Observer)模式
别名 发布-订阅(Publish-Subscribe)模式、从属者(Dependents)模式 定义 Define a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatical原创 2016-04-13 12:48:36 · 212 阅读 · 0 评论 -
设计模式之装饰(Decorator)模式
别名 包装(Wrapper)模式 定义 Attach additional responsibilities to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality. 在对象上动态地附加责任,装饰者为子类扩展功能提供了原创 2016-04-13 12:59:25 · 301 阅读 · 0 评论 -
设计模式之策略(Strategy)模式
别名 政策(Policy) 模式 定义 Define a family of algorithms, encapsulate each one, and make them interchangeable. Strategy lets the algorithm vary independently from clients that use it. 定义一个算法族,将每一个算原创 2016-04-11 21:15:33 · 288 阅读 · 0 评论