Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How is strategy pattern is different then dependency injection?

ie below is what you can do with Strategy pattern:

class Foo{
   private readonly ISortAlgo _sortAlgo;

  public Foo(ISortAlgo sortAlgo)
  {
     _sortAlgo = sortAlgo;
  }

  public void Sort()
  {
    _sortAlgo.sort();
  }

}

with DI you can do the same, essentially you can have constructor, setter, interface etc. injection. and it would give the same effect as Strategy pattern. I am aware that DI is also set of other principles, such as loose coupling, testability, wiring etc.

In terms of implementation i dont see much difference.

what s the difference between strategy pattern and DI?

share|improve this question

4 Answers

up vote 4 down vote accepted

Dependency injection injects some dependency into a component (usually a class). A strategy could be passed to a method, but this would not be considered to be DI.

Dependency injection works on a larger scale than the strategy pattern. DI is sometimes configured during lifetime of an application using an external configuration file, where as the SP is mostly cast into code. They are therefore not competitors.

share|improve this answer
"passed to a method, but this would not be considered to be DI". Correction: DI comes in multiple forms. Constructor is the most common form (and often the best option), but method injection is also a form of Dependency Injection. – Steven Aug 10 '12 at 14:19
Would you also consider it to be DI if it was passed to a method just to perform some action (the case I had in mind) and not to initialize a class? – Olivier Jacot-Descombes Aug 10 '12 at 14:34
The dependency is injected into the method, so Yes, it is a form of dependency injection. However, method injection is usually a very fragile way of injecting dependencies, since the dependency has to be part of the contract, and it will be cumbersome to pass dependencies from method to method to method to method down the call stack. – Steven Aug 10 '12 at 15:57

First, dependency injection has not only constructor injection as method to inject, but also property, method injection and ambient context.

Second, stategy defines behaviour, so client could select special one that matches on his needs. While dependency injection works with abstraction of external dependencies.

share|improve this answer
+1. For mentioning behaviour. – Olivier Jacot-Descombes Aug 7 '12 at 18:11
+1 for a nice summary. I think that some confusion is due to the fact that the two DP's use the same mechanisms but have different scope and intent. – Anders Johansen Aug 8 '12 at 6:51

Strategy allows you to change the behaviour of an object. DI is a design pattern that allows you to be dependent on abstractions.

share|improve this answer

Dependency Injection is a pattern that help you split construction form logic which is great for testing and system extensibility. It can also be used in place where other patters fits e.g. Singleton.

Strategy pattern solves a different problem. It let runtime to choose the algorithm - in OOP through polymorphism.

Surely, they can work together.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.