Thursday, April 29, 2010

Creational Patterns

Creational Patterns-


All the creational patterns define the best possible way in which an object can be instantiated. These describes the best way to CREATE object instances. The object instance in Java can be created using a new operator.

                                        Book book = new Book ();
 
The new Operator creates the instance of an object, but this is hard-coding.Creating good software is difficult and so, hard coding is the last thing one should do. Also, at times the very nature of the object which is created can change according to the nature of the program. In such scenarios, we can make use of patterns to give this a more general and flexible approach.

There are five types of Creational Patterns.
1. Factory Pattern
2.
Abstract Factory Pattern
3. Builder Pattern
4. Prototype Pattern
5.
Singleton Pattern

No comments:

Post a Comment