Structural Patterns  «Prev  Next»
Lesson 1

Structural Design Patterns

This module explores structural patterns, patterns that use composition to merge objects and classes into larger structures. A good toolbox of structural patterns allows you to solve many thorny problems you are likely to encounter.
They show you how to glue different pieces of a system together in a flexible and extensible fashion. Structural patterns help you guarantee that when one of the parts changes, the entire structure does not need to change. They also show you how to recast pieces that do not fit (but that you need to use) into pieces that do fit.
In this module, you will learn:
  1. How programmers use structural patterns
  2. The characteristics of some commonly used structural patterns
  3. When and when not to use the Flyweight pattern
  4. How the Flyweight pattern can help with your course project

Pivotal Architectural Paradigms

Structural Design Patterns serve as pivotal architectural paradigms that primarily focus on the composition of classes or objects to form more complex, integrated, and larger structural entities. Unlike Creational Patterns, which concern themselves with the efficient creation of objects, and Behavioral Patterns, which concentrate on object collaboration and responsibilities, Structural Patterns address the arrangement and assembly of multifaceted systems, ensuring the components interoperate seamlessly. Structural Patterns streamline the software architecture by providing high-level building blocks that foster scalability and sustainability. They promote the concept of object composition over inheritance, thereby ensuring that systems are easier to extend or modify. By isolating the intricacies of object collaboration and structure, these patterns create a layer of abstraction that simplifies client interaction with a set of individual objects acting as a unified whole.
A classic example is the "Composite Pattern," which composes objects into tree-like structures to represent part-whole hierarchies. This is notably useful when clients need to treat individual objects and compositions of objects uniformly. Another prevalent Structural Pattern is the "Adapter Pattern," which allows incompatible interfaces to collaborate. It essentially acts as a wrapper that bridges the gap between two disparate interfaces, making one compatible with the other without altering their existing code. The "Proxy Pattern" serves as another exemplar. It provides a placeholder or surrogate for another object to control access to it. This is particularly beneficial for implementing lazy initialization, access control, logging, and monitoring. Similarly, the "Decorator Pattern" dynamically adds new responsibilities to objects without altering their code. It is akin to wrapping a gift, where the primary object is wrapped with additional functionalities, altering its behaviors as needed.
Thus, in the panorama of software design, Structural Patterns are instrumental in creating versatile, maintainable, and scalable architectures. They embody the principle that "the whole is greater than the sum of its parts," guiding developers toward a modular design where components can be freely composed and interchanged, without disrupting the integrity and functionality of the larger system. These patterns are not just codified best practices but are essential strategies for crafting robust and adaptable software architectures.

Why you should learn Structural Patterns

As the future architects of software systems, it is crucial that we appreciate and understand the cornerstones of our craft. And one of the fundamental aspects that is instrumental to our growth and progress is the understanding of Structural Design Patterns. It is not just a tool for us, but a guiding philosophy that shapes our approach to building robust and effective systems.
Structural Design Patterns are not just about structuring classes and objects, but they serve as the bedrock upon which complex software applications are built. Their importance is so paramount that they form the second layer of the ‘Gang of Four’ design patterns, a collection of foundational techniques for software development. Patterns like
  1. Adapter,
  2. Composite,
  3. Proxy,
  4. Flyweight,
  5. Facade,
  6. Bridge, and
  7. Decorator
have stood the test of time, proving their mettle across countless projects. When we talk about Structural Design Patterns, we talk about scalability, maintainability, and extensibility. They help us to identify a simple way to realize relationships among entities. They allow us to encapsulate complex functionalities into simplified interfaces, promote code reuse, and make it easier for us to add new features without causing disruptions. In a nutshell, they enable us to build systems that are easy to understand, extend, and maintain.
For example, consider the Adapter pattern. It serves as a bridge between two incompatible interfaces. How many times have we come across libraries that don't work well together? How many times have we felt the need to wrap an existing module to add some new behaviors? The Adapter pattern allows us to seamlessly integrate components, saving us countless hours of refactoring. Similarly, think about the Facade pattern. It provides a unified high-level interface to a set of interfaces in a subsystem, which makes the subsystem easier to use. We can encapsulate complex subsystems behind a simplified API, giving us more control over the system's intricacies. It’s like the proverbial tip of the iceberg, there’s a lot more beneath the surface than what meets the eye.
We must strive to learn and apply these patterns not because it's a trend, but because it's an industry standard. It's what distinguishes an exceptional software architect from an average one. It's the difference between building a system that merely works and one that thrives under the test of real-world challenges. Therefore, I implore you all to dive into Structural Design Patterns with an open mind. Let's demystify these patterns, understand their importance, and make them a part of our software development DNA. We are engineers, architects, builders of a new age. Let's make the most of these design patterns to become the best versions of ourselves and create systems that are not just efficient but are pieces of architectural brilliance.
Remember, the journey of a thousand miles begins with a single step. Let's take that step together towards understanding and mastering Structural Design Patterns. Because this is not just about writing code, it's about writing the future.

List of Structural Design Patterns

  1. Adapter: Adapts one interface for a class into one that a client expects
  2. Bridge: Decouple an abstraction from its implementation so that the two can vary independently
  3. Composite: A tree structure of objects where every object has the same interface
  4. Decorator : Add additional functionality to a class at runtime where subclassing would result in an exponential rise of new classes
  5. Facade: Create a simplified interface of an existing interface to ease usage for common tasks
  6. Flyweight: A high quantity of objects share a common properties object to save space
  7. Proxy: A class functioning as an interface to another thing

Sub-Patterns

  1. Aggregate: A version of the Composite pattern with methods for aggregation of children
  2. Extensibility: also known as Framework - hide complex code behind a simple interface
  3. Pipes and filters: A chain of processes where the output of each process is the input of the next
  4. Private class data: Restrict accessor/mutator access

Ad Gang of Four Patterns