I start learning Design Patterns. Now I understand a little bit but there are quite a lot of confusions for me. What's the difference between Strategy DP and Factory Method DP? For me they both looks like the same.
|
|
Strategy is about behavior. Factory is about creation/instatation. Suppose you have an algorithm, to calculate a discount percentage. You can have 2 implementations of that algorithm; one for regular customers, and one for extra-ordinary good customers. Then, you can use a factory pattern to instantiate the class that you want. The factory method thus instantiates either the regular customer-discount algorithm, or the other implementation. In short: the factory method instantiates the correct class; the strategy implementation contains the algorithm that must be executed. |
|||
|
|
|
Strategies incapsulate different behaviors behind the same interface. You instantiate Strategies with
Factory Method incapsulates instantiation mechanism of some other interface (maybe a Strategy, but maybe something else). For example:
Strategy pattern is often used together with Factory Method, while Factory Method is often used for instantiation of other stereotypes, not only Strategies. |
|||
|
|
|
The difference is in their intention: The factory method pattern is a creational pattern used to defer object instantiation to subclasses. On the other end, strategy pattern is a behavioral pattern used to decouple an algorithm from client code. You would use the first if you need to abstract object creation by defining a method that returns an instance of a specific type, but letting subclasses implement it. In Java, an example would be as follows:
Note how actual object instantiation is differed to the implementation by SomeAbstractClass. On the other hand you would use the Strategy pattern if you need to decouple an algorithm from the calling code. This is similar to how the View communicates with the Controller in the MVC pattern. In a hypothetical java MVC UI kit this could be as follows:
Now, say you had another component that instead of clicking responded sliding (i.e. slider)
Note how in Button and Slider classes (Views) the logic of executing an action is exactly the same (both defer to the ActionHandler). We could therefore pull them to the parent class (Widget) and let subclasses just define the action handler implementation, like so:
By using the strategy pattern we can change our widget's behavior simply by configuring them with another concrete implementation of ActionHandler. In that way, widgets (views) are loosely coupled form action handling logic (controllers). We could make things a little more interesting by mixing the strategy and the factory method pattern together, like so:
Please Note that this is an illustrative example of a strategy pattern and NOT how Swing (Java's default UI kit) is implemented. Both patterns are somewhat similar in that they defer some piece of logic to somewhere else. This is a common theme in design patterns that enables the separation of concerns. However, the nature or intention of the deferred logic is completely different. Factory method defers creation logic to subclasses (in my example, the creation of concrete ActionHandler instances), whereas strategy pattern the execution of an algorithm (in my example, what to do when an the user interacts with a specific component). |
||||
|
|