Design Patterns

  • 16 August 2019
  • ADM

 

 

Design Patterns - images/logos/oop.jpg

 

A Design Pattern is not providing you with a full solution to the problem that can be directly converted into source code or byte code. It provides you guidelines how to solve the problem that can be used in many different situations. It's like a template or description.

There are four big categories:

  • Creational patterns: are design patterns that deal with object creation mechanisms, trying to create objects in a manner suitable to the situation.
  • Structural patterns: makes the design of the application simpler, identifying a simple way to realise relationships between entities.
  • Behavioural patterns: identifies common communication patterns between objects.
  • Concurrency patterns: design patterns that deal with the multi-threaded programming paradigms.

Here is a list of simple design pattern tutorials with examples.

 

Creational patterns

Structural patterns

Behavioral patterns

Concurrency patterns

 

References