Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
design_patterns:gof [2019/11/09 20:44] – [Erzeugungsmuster (creational patterns)] phreazer | design_patterns:gof [2019/11/09 21:13] (current) – [Verhaltensmuster (behavioral patterns)] phreazer | ||
---|---|---|---|
Line 13: | Line 13: | ||
Class/ | Class/ | ||
+ | |||
+ | * Adapter/ | ||
+ | * Bridge: Hierarchy of abstractions and implementations | ||
+ | * Facade: Unified, simplified interface to complex operations involving multiple classes | ||
+ | * Decorator: Dynamically add/remove methods to an object | ||
+ | * Flyweight: Large number of object required, where information is shared | ||
+ | * Composite: Tree-structure to represent part-whole hierarchies (treat part and whole uniformly) | ||
+ | * Proxy: Class acting as interface to something else. | ||
===== Verhaltensmuster (behavioral patterns) ===== | ===== Verhaltensmuster (behavioral patterns) ===== | ||
+ | * Template method: Abstract class which implements invariant code and helper method, while specific implementations are in derived classes | ||
+ | * Strategy: Defines interface for a method and concrete implementations. Strategies could be choosen on runtime. | ||
+ | * Iterator: Access of elements in container without exposing underlying representation | ||
+ | * Interpreter: |