There have been several questions already posted with specific questions about dependency injection, such as when to use it, what frameworks are there for it. However, here's the newbie question:

What is dependency injection and when/why should or shouldn't it be used?

Edit: While external links for followup reading are always appreciated, I'd like to encourage people to write as complete an answer here as possible, so that SO itself can be a good source to learn. I believe this is the intent of the site.

link|improve this question

62% accept rate
27  
Hear, hear! We definitely need complete answers, not merely links. – Landon Sep 25 '08 at 0:50
2  
Why write an explanation on something that somebody else has already done way better? That's what citing is for. – VVS Sep 25 '08 at 6:58
19  
The purpose of Stack Overflow is to generate a repository of programming-related information. Providing ONLY a link does not help accomplish this. – Landon Sep 25 '08 at 11:17
2  
I agree with the comments regarding links. I can understand you may want to reference someone else. But at least add why you are linking them and what makes this link better than the other links I could get by using google – Christian Payne Jun 1 '09 at 0:27
2  
Regarding links, remember that they often disappear one way or another. There is a growing number of dead links in SO answers. So, no matter how good the linked article is, it's no good at all if you can't find it. – DOK Oct 28 '10 at 16:26
show 4 more comments
feedback

11 Answers

up vote 90 down vote accepted

Basically, instead of having your objects creating a dependency or asking a factory object to make one for them, you pass the needed dependencies in to the constructor, and you make it somebody else's problem (an object further up the dependency graph, or a dependency injector that builds the dependency graph). A dependency as I'm using it here is any other object the current object needs to hold a reference to.

One of the major advantages of dependency injection is that it can make testing lots easier. Suppose you have an object which in it's constructor does something like:

public SomeClass() {
    myObject = Factory.getObject();
}

This can be troublesome when all you want to do is run some unit tests on SomeClass, especially if myObject is something that does complex disk or network access. So now you're looking at mocking myObject but also somehow intercepting the factory call. Hard. Instead pass the object in as an argument to the constructor. Now you've moved the problem away elsewhere, but testing can become lots easier. Just make a dummy myObject and pass that in. The constructor would now look a bit like:

public SomeClass (MyClass myObject) {
    this.myObject = myObject;
}

Most people can probably work out the other problems that might arise when not using dependency injection while testing. Like classes that do too much work in their constructors etc. Most of this is stuff I picked up on the google testing blog, to be perfectly honest...

link|improve this answer
2  
Acknowledging that Ben Hoffstein's referenceto Martin Fowler's article is necessary as pointing a 'must-read' on the subject, I'm accepting wds' answer because it actually answers the question here on SO. – AR. Sep 26 '08 at 16:55
feedback

The best definition I found so far is one by James Shore:

"Dependency Injection" is a 25-dollar term for a 5-cent concept. [...] Dependency injection means giving an object its instance variables. [...].

There is an article by Martin Fowler that may prove useful too.

Dependency injection is basically providing the objects that an object needs (its dependencies) instead of having it construct them itself. It's a very useful technique for testing, since it allows dependencies to be mocked or stubbed out.

Dependencies can be injected into objects by many means. One can even use specialized dependency injection frameworks to do that, but they certainly aren't obligatory. You don't need those frameworks to have dependency injection. Instantiating and passing objects (dependencies) explicitly to is just as good an injection as injection by a framework.

link|improve this answer
28  
That one liner is the best explanation. – Unknown Sep 13 '09 at 19:28
11  
Thanks - this makes perfect sense. It turns out I've used DI before and just didn't know what it was called. The term "dependency injection" makes it sound like it must be complicated. – Andy West Jun 30 '10 at 15:16
11  
+1 for "25-dollar term for a 5-cent concept." - Not only a $25 term, but also a misleading one. – Slomojo Feb 8 '11 at 4:16
1  
+1 for the 'you don't need a framework' - in fact, I think the quite is so good I'm going to reference it in my book :-) – Martijn Verburg Jul 14 '11 at 10:33
feedback

Dependency Injection is a practice where objects are designed in a manner where they receive instances of the objects from other pieces of code, instead of constructing them internally. This means that any object implementing the interface which is required by the object can be substituted in without changing the code, which simplifies testing, and improves decoupling.

For example, consider these clases:

public class PersonService {
  public void addManager( Person employee, Person newManager ) { ... }
  public void removeManager( Person employee, Person oldManager ) { ... }
  public Group getGroupByManager( Person manager ) { ... }
}

public class GroupMembershipService() {
  public void addPersonToGroup( Person person, Group group ) { ... }
  public void removePersonFromGroup( Person person, Group group ) { ... }
}

In this example, the implementation of PersonService::addManager and PersonService::removeManager would need an instance of the GroupMembershipService in order to do its work. Without Dependency Injection, the traditional way of doing this would be to instantiate a new GroupMembershipService in the constructor of PersonService and use that instance attribute in both functions. However, if the constructor of GroupMembershipService has multiple things it requires, or worse yet, there are some initialization "setters" that need to be called on the GroupMembershipService, the code grows rather quickly, and the PersonService now depends not only on the GroupMembershipService but also everything else that GroupMembershipService depends on. Furthermore, the linkage to GroupMembershipService is hardcoded into the PersonService which means that you can't "dummy up" a GroupMembershipService for testing purposes, or to use a strategy pattern in different parts of your application.

With Dependency Injection, instead of instantiating the GroupMembershipService within your PersonService, you'd either pass it in to the PersonService constructor, or else add a Property (getter and setter) to set a local instance of it. This means that your PersonService no longer has to worry about how to create a GroupMembershipService, it just accepts the ones it's given, and works with them. This also means that anything which is a subclass of GroupMembershipService, or implements the GroupMembershipService interface can be "injected" into the PersonService, and the PersonService doesn't need to know about the change.

link|improve this answer
The example is brilliant ! Very realistic & hence conveys the point perfectly ! Thanks a lot ! – Preets Nov 8 '09 at 21:28
Good explanation – Hasan Fahim May 11 at 6:39
feedback

Best place to start is Martin Fowler's article.

link|improve this answer
Martin Fowler is the man. I agree with Ben. – Josh Sep 25 '08 at 0:36
13  
Martin Fowler IS the man, but if you don't know Java, you won't know what he's doing with his examples. (And if you know C#, you won't know what of what he's doing is DI magic, and what is jumping through the Java hoops.) – dnord Sep 9 '09 at 18:32
feedback

The accepted answer is a good one - but I would like to add to this that DI is very much like the classic avoiding of hardcoded constants in the code.

When you use some constant like a database name you'd quickly move it from the inside of the code to some config file and pass a variable containing that value to the place where it is needed. The reason to do that is that these constants usually change more frequently than the rest of the code. For example if you'd like to test the code in a test database.

DI is analogous to this in the world of Object Oriented programming. The values there instead of constant literals are whole objects - but the reason to move the code creating them out from the class code is similar - the objects change more frequently then the code that uses them. One important case where such a change is needed is tests.

link|improve this answer
feedback

I found this funny Example : in terms of loose-coupling

Any application is composed with many objects that collaborate each-other to perform some useful stuff. Traditionally each object is responsible for obtaining its own references to the dependent objects (dependencies) it collaborate with. This leads to highly coupled classes and hard-to-test code.

For example , Consider a Car object. A Car depends on Wheels, Engine, Fuel, Battery... etc to run. Traditionally we define the brand of such dependent objects along with the definition of Car object.

class Car{
 private Wheel wh= new NepaliRubberWheel();
 private Battery bt= new ExcideBattery();
 //rest
}

Here, Car object is responsible for creating the dependent objects.

What if we want to change the type of its dependent object - say Wheel after the initial NepaliRubberWheel() punctures. We need to recreate the Car object with its new dependency say ChineseRubberWheel(), But only the Car manufacturer can do that.

Then what the Dependency Injection do us for ...

When using Dependency Injection, objects are given their dependencies on run time rather than compile time(car manufacturing time). So that we can now change the Wheel whenever we want. Here, the Dependency (Wheel) can be injected to Car at run time.

Source : understanding-dependency-injection

link|improve this answer
feedback

The google testing blog does a good job of explaining the benefits of dependency injection with regards to unit testing:

How to think about the new operator

link|improve this answer
feedback

From Wikipedia:

Dependency injection (DI) in Computer programming refers to the process of supplying an external dependency to a software component. It is a specific form of inversion of control where the concern being inverted is the process of obtaining the needed dependency.

Here's some good info:

http://en.wikipedia.org/wiki/Dependency_injection

http://en.wikipedia.org/wiki/Inversion_of_control

link|improve this answer
feedback

Here's a video explaining DI in context of Java

http://crazybob.org/2007/06/introduction-to-guice-video-redux.html

And then how guice does DI in Java.

http://code.google.com/p/google-guice/

link|improve this answer
feedback

Probably dupe of this question

http://stackoverflow.com/questions/45191/ioc-explain-and-more-important-when-to-use-it#45197

Also SO has plenty of questions and answers about IoC/DI. I'm closing this question as dupe.

But feel free to open it again if you really think that those information is not sufficient.

link|improve this answer
feedback

One of the nicest explanation I've ever read about DI is from Google's Guice (pronounced as juice)

http://code.google.com/p/google-guice/wiki/Motivation?tm=6

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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