© Bipin Joshi 2016
Bipin JoshiBeginning SOLID Principles and Design Patterns for ASP.NET Developers10.1007/978-1-4842-1848-8_55. Structural Patterns: Adapter, Bridge, Composite, and Decorator
Bipin Joshi1
(1)301 Pitruchhaya, Thane, India
Structural patterns deal with the arrangement and relationship between the classes in the system. They focus on how classes and objects are composed so as to form larger and more complex structures. Obviously, structural patterns need to take into account all those classes that make up the system.
There are seven patterns in this category: adapter, bridge, composite, decorator, façade, flyweight, and proxy. This chapter will discuss the first four, and the next chapter will discuss the remaining three. Specifically, ...