您的位置:首页 > 产品设计 > UI/UE

list of most-frequently-used design patterns

2011-12-19 00:00 323 查看
FROM HEAD FIRST DESIGN PATTERNS

strategy pattern defines a family of algorithms, encapsulates each one, and makes them interchangeable. Strategy lets the algorithm vary independently from clients that use it.

Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and updated automatically.

Decorator Pattern attaches additional responsibility to an object dynamically. Decorators provide a flexible alternative to subclassing for extending functionality.

Factory Method defines an interface for creating an object, but let subclasses decide which class to instantiate. Factory Method lets a class defer instantiation to its subclasses.

Abstract Factory provides an interface for creating families of related or dependent objects without specifying their concrete classes.

Singleton Pattern

Command Pattern

Adapter Pattern

Facade Pattern

Template Method Pattern

Iterator Pattern

Composite Pattern

State Pattern

Proxy Pattern
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  design patterns