`
cutesunshineriver
  • 浏览: 195341 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

《Head First Design Pattern》

阅读更多
OO Basic

Abstraction

Encapsulation

Polymorphism

Inheritance

面向对象的基础也就是抽象、封装、多态和继承。

==========================================================================

OO Principles

Encapsulate what varies.
封装变化。

Favor composition over inheritance.
优先使用组合,而不是继承。

Program to interface, not implementation.
面向接口编程,不要面向实现编程。

Strive for loosely coupled designs between objects that interact.
在设计交互对象时应力求解耦。

Classes should open for extension but closed for modification.
类应该要做到对扩展开放,对修改关闭。也就是不修改一个类,也能对其进行扩展。

Depend on abstractions.Do not depend on concrete classes.
依赖于抽象,而不是具体的实现类。

Only talk to your friends.
不要和陌生人说话。

Don't call us, we will call you.
好莱坞法则。

A class should have only one reason to change.
单一职责,类有且只有一个变化的理由。

==========================================================================

OO Patterns

Strategy - defines a family of algorithm, encapsulates each one, and makes them interchangeable.Strategy lets the algorithm vary independent form client that use it.

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

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

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

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

Singleton - Ensure a class only has one instance and provide a global point of access to it.

Command - Encapsulates a request as an objects, thereby letting you parameterize clients with different requests, queue or log requests, and support undoable operations.

Adapter - Converts the interface of a class to another interface clients expects.Let classes work together that couldn't otherwise because of incompatible interface.

Facade - Provides a unified interface to a set of interface in a subsystem.Facade defines a higher-level interface that makes the subsystem easier to use.

Template Method - Define the skeleton of an algorithm in an operation, deferring some steps to subclasses.Template Method lets subclasses redefine certain steps of an algorithm without changing the algorithm's structure.

Iterator - Provide a way to access the elements of an aggregate objects sequentially without exposing its underlying representation.

Composite - Compose objects into tree structure to represent part-whole hierarchies.Composite let clients treat individual objects and compositions of objects uniformly.

State - Allow an object to alter its behavior when its internal state changes.The object will appear to change its class.

Proxy - Provide a surrogate or placeholder for another object to control access to it.

==========================================================================

Compound Patterns

A Compound Pattern combines two or more patterns into a solution that solves a recurring or general problem.

==========================================================================

Pattern Categories

Creational
Singleton
Builder
Prototype
Abstract Factory
Factory Method

Structural
Decorator
Flyweight
Composite
Adapter
Proxy
Facade
Bridge

Behavioral
Template Method
Interpreter
Chain of Responsibility
Visitor
Command
State
Strategy
Mediator
Iterator
Memento
Observer
分享到:
评论
1 楼 sybell 2011-11-07  
呵呵,原来你在这里做生意啊。好。

相关推荐

Global site tag (gtag.js) - Google Analytics