How does it work, what is it used for and when should one use it?
|
|
Let's explain it the easy way : You have a class Car() with a method run() so you use it this way in a pseudo language :
Now, you may want to change the run() behavior on the fly, while the program is executing. E.G : to simulate a motor failure or the use of a "boost" button in a video game. There are several ways to do that : using conditional statements and a flag variable is one of them. The strategy pattern is another, that delegate the behaviour of the run() method to a subclass :
If you want to change the car behavior, you can just change the motor (easier in a program that in the real life, right ;-) ?) It's very useful if you have a lot of complex states : you can change and maintain them much more easily. |
|||||||||
|
ProblemThe strategy pattern is used to solve problems that might (or is foreseen they might) be implemented or solved by different strategies and that posses a clearly defined interface for such cases, being ecah strategy perfectly valid in is own with some of them being preferable on some situations allowing the application to switch between them on runtime. StructureStructure of the strategy pattern (sorry, the names are in spanish but I think they are clear anyway. Contexto means Context, Interfaz means Interface, Metodo means method) Code Example
|
|||||
|
|
Directly from the Strategy Pattern Wikipedia article:
|
|||
|
|
|
A closely related pattern is the Delegate pattern; in both cases, some of the work is passed to some other component. If I understand correctly, the difference between these patterns is this (and please correct me if I'm wrong):
Anyone know any other differences? |
||||
|
|
|
Get the simplify explanation and sample on Strategy pattern here http://tech.wowkhmer.com/post/2008/11/14/Strategy-Design-Pattern.aspx |
|||
|
|
|
||||
|
|
|
To add to the already magnificient answers: The strategy pattern has a strong similarity to passing a function (or functions) to another function. In the strategy this is done by wrapping said function in an object followed by passing the object. Some languages can pass functions directly, so they don't need the pattern at all. But other languages can't pass functions, but can pass objects; the pattern then applies. Especially in Java-like languages, you will find that the type zoo of the language is pretty small and that your only way to extend it is by creating objects. Hence most solutions to problems is to come up with a pattern; a way to compose objects to achieve a specific goal. Languages with richer type zoos often have simpler ways of going about the problems -- but richer types also means you have to spend more time learning the type system. Languages with dynamic typing discipline often gets a sneaky way around the problem as well. |
|||||
|

