設(shè)計(jì)模式學(xué)習(xí)筆記
最近利用早晨的大好時(shí)光,學(xué)習(xí)了一下設(shè)計(jì)模式,同時(shí)學(xué)習(xí)了英語(yǔ)。目前一共學(xué)習(xí)了八種模式:
一、 The Observer Pattern
It defines a one to many relationship between a set of objects. When the state of one object changes, all of its dependents are notified.
二、 The Decorator Pattern
It attaches additional responsibilities to an object dynamically.Decorators provide a flexible alternative to subclassing for extending functionality.
三、 The Factory Pattern
It defines an interface for creating an object, but lets subclasses decide which class to instantiate. Factory method lets a class defer instantiation to subclass.
四、 The Abstract Pattern
It provides an interface for creating families of related or dependent objects without specifying their concrete classes.
五、 The Singleton Pattern
It ensures a class has only one instance, and provides a global point of access to it.
六、 The Command Pattern
It encapsulates a request as an object, thereby letting you parameterize other objects with different requests, queue or log requests, and support undoable operations.
七、 The Adapter Pattern
It converts the interface of a class into another interface the clients expect. Adapter lets classes work together that couldn’t otherwise because of imcompatible interface.
八、 The Façade Pattern
It provides a unified interface to a set of interfaces in a subsystem. Façade defines a higher-level interface that makes the subsystem easier to use.
在這上述的八個(gè)模式中,包含了設(shè)計(jì)模式的三種類(lèi)型:創(chuàng)建型模式,結(jié)構(gòu)型模式,行為模式。其中Factory、Abstract Factory、Singleton為創(chuàng)建型模式,Decorator、Adapter、Facade為結(jié)構(gòu)型模式,其余的Command和Observer為行為模式。
不過(guò),感覺(jué)有時(shí)侯理解的特別清楚,但過(guò)一段時(shí)間就忘了。所以一定要將其用起來(lái),才能對(duì)其有深深的體會(huì),不會(huì)就是死的知識(shí)。一定要讓其活起來(lái)。
呵呵,又看了一些蝸牛的家寫(xiě)的設(shè)計(jì)模式趣解,反而更有助于理解呦,不妨看看。鏈接地址為:http://www.shnenglu.com/bangle/archive/2008/08/23/59725.html
posted on 2009-07-21 18:11
Sandy 閱讀(378)
評(píng)論(0) 編輯 收藏 引用 所屬分類(lèi):
設(shè)計(jì)模式