Reflections on Strategy
In this lesson, we will briefly explain the Strategy pattern.
We'll cover the following...
Why do we need the Strategy pattern?
- The pattern is fundamental.
- It’s a shift in mindset. Applying Strategy shifts the focus of an algorithm from how to what.
- Rather than controlling how a function
...