Structural Design Patterns
Structural patterns are concerned with how classes and objects are composed to form larger structures.
Decorator
Add new functionality dynamically to existing objects, or remove it
Proxy
Control access to an object.Create expensive objects on demand
Bridge
Enable development of the interface and implementation of a component to proceed independently
Composite
Treat single objects and composite objects in the same way
Flyweight
Reduce the cost of working with large numbers of very small objects
Adapter
Match otherwise incompatible interfaces
Façade
All these pattern details and their implementations will soon be covered.
Till next time....
Happy Coding
Comments
Post a Comment