Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
design_patterns:gof [2019/11/09 21:02] – [Strukturmuster (structural patterns)] phreazer | design_patterns:gof [2019/11/09 21:13] (current) – [Verhaltensmuster (behavioral patterns)] phreazer | ||
---|---|---|---|
Line 23: | Line 23: | ||
===== 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: |