What is Creative Design Pattern?

Questions by javajet

Showing Answers 1 - 9 of 9 Answers

Hi,
Patterns fall into 3 categories, Creational, Structural and Behavioral. With regards to Creational pattern, objects are created depending on how they are expected to perform.
Examples: Factory, AbstractFactory, Builder, Prototype, Singleton.
Hope it helps.
Thank you.

  Was this answer useful?  Yes

SuprajaYKM

  • Mar 8th, 2007
 

creational patterns deal with the best way to create instances of objects.This is important because your program should not depend on how objects are created and arranged.
simplest way to create an instance of an object is by using the new operator.In many cases, the exact nature of the object that is created could vary with the needs of the program from time to time and abstracting the creation process into a special "creator" class can make your program more flexible and general.
Tyoes Creational Patterns 1) Factory method 2) Abstract Factory Method 3) Builder Pattern 4) Singleton Pattern

 

  Was this answer useful?  Yes

sudhir

  • Jun 15th, 2007
 

Creative Design Pattern is one J2EE patterns. This pattern is used for project design and building. Best ever patterns are J2EE patterns.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions