Posted By : Shailendra Chauhan, 25 May 2013
Updated On : 14 Feb 2014
Total Views : 47,150
Version Support : All C# & .Net
In 1994, four authors Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides published a book (Design Patterns: Elements of Reusable Object-Oriented Software) for explaining the concept of Design Pattern in Software development. These four authors are collectively known as Gang of Four (GOF).
GOF Design Patterns
The 23 Design patterns are defined by the Gang of Four programmers. These 23 patterns are divided into three groups depending on the nature of the design problem they intend to solve.
Creational Design Patterns
These patterns deal with the process of objects creation in such a way that they can be decoupled from their implementing system. This provides more flexibility in deciding which objects need to be created for a given use case/ scenario. There are as follows:
Factory Method : Create instances of derived classes
Abstract Factory : Create instances of several classes belonging to different families
Builder : Separates an object construction from its representation
Prototype : Create a duplicate object or clone of the object
Singleton : Ensures that a class can has only one instance
Structural Design Patterns
These patterns deal with the composition of objects structures. The concept of inheritance is used to compose interfaces and define various ways to compose objects for obtaining new functionalities. There are as follows:
Adapter : Match interfaces of different classes
Bridge : Separates an object’s abstraction from its implementation
Composite : A tree structure of simple and composite objects
Decorator : Add responsibilities to objects dynamically
Façade : A single class that represents an entire complex system
Flyweight : Minimize memory usage by sharing as much data as possible with similar objects
Proxy : Provides a surrogate object, which references to other object
Behavioral Design Patterns
These patterns deal with the process of communication, managing relationships, and responsibilities between objects. There are as follows:
Chain of Responsibility: Passes a request among a list or chain of objects.
Command: Wraps a request under an object as a command and passed to invoker object.
Interpreter
Iterator
Mediator
Memento
Observer
State
Strategy
Visitor
Template Method
What do you think?
I hope you will enjoy the GOF design patterns while designing your software. I would like to have feedback from my blog readers. Your valuable feedback, question, or comments about this article are always welcome.