added tutorial links to bridge, decorator, abstract-factory, strategy and template method patterns

This commit is contained in:
Sanket
2017-09-23 20:55:38 -04:00
parent fb4c0f77e5
commit 684cad9beb
5 changed files with 15 additions and 0 deletions

View File

@ -29,6 +29,9 @@ Use the Strategy pattern when
* an algorithm uses data that clients shouldn't know about. Use the Strategy pattern to avoid exposing complex, algorithm-specific data structures
* a class defines many behaviors, and these appear as multiple conditional statements in its operations. Instead of many conditionals, move related conditional branches into their own Strategy class
## Tutorial
* [Strategy Pattern Tutorial](https://www.journaldev.com/1754/strategy-design-pattern-in-java-example-tutorial)
## Credits
* [Design Patterns: Elements of Reusable Object-Oriented Software](http://www.amazon.com/Design-Patterns-Elements-Reusable-Object-Oriented/dp/0201633612)