Structural Design Patterns

Learn about structural design patterns.

Whereas creational design patterns focus on object creation, structural design patterns take a step back and discuss how system components are related to one another. Though these do have in-code representations, and that is often what people look to for examples, we’ll be using the design approach because these patterns will come up in the system designs and architectural landscapes that we’ll cover later.

Adapter pattern

The adapter pattern is used to convert between different object types, which often may serve similar ...