July 2001
Beginner to intermediate
368 pages
6h 52m
English
In the CAD/CAM problem earlier in this book, I showed how design patterns can be used by focusing on their context with each other. Design patterns working together can assist in the development of an application's architecture. It is also useful to distinguish how many of the patterns are microcosmic examples of design by context.
For example,
The Bridge pattern tells me to define my Implementations within the context of the derivations of my Abstraction.
The Decorator pattern has me design my Decorators within the context of my original component.
The Abstract Factory has me define my families within the context of my overall problem so I can see which particular objects need to be implemented.
In fact, designing ...