0 votes
in Design Patterns by

Q. Name types of Design Patterns?

1 Answer

0 votes
by

Design patterns can be classified in three categories: Creational, Structural and Behavioral patterns.

  • Creational Patterns - These design patterns provide a way to create objects while hiding the creation logic, rather than instantiating objects directly using new opreator. This gives program more flexibility in deciding which objects need to be created for a given use case.

  • Structural Patterns - These design patterns concern class and object composition. Concept of inheritance is used to compose interfaces and define ways to compose objects to obtain new functionalities.

  • Behavioral Patterns - These design patterns are specifically concerned with communication between objects.

Related questions

0 votes
asked Oct 17, 2019 in Design Patterns by Robin
0 votes
asked Jul 23, 2023 in Design Patterns by Robindeniel
...