Software Best Design Patterns
Quick glance at design patterns, hand
Pattern
|
Example
|
Reason
|
Builder
|
Report builder, header, footer, type
(pdf, html, excel)
|
Separates construction from
representation
|
Command
|
Commands from the file menu; New,
Open, Print, Exit
|
![]() |
Iterator
|
Iterates through a list of objects
|
|
Context help menu, help request goes
to all of the controls on the windows forms; and whoever is responsible to
provide the help, provides the help
|
Every objects gets a chance to
perform its function. More: http://izlooite.blogspot.ae/2009/04/design-pattern-chain-of-responsibility.html
|
Happy designing!