vote up 2 vote down star
2

Do the "Dependency Inversion Principle" (DIP) and "Design to Interfaces Principle" express the same principle? If not, what would be the difference?

EDIT

To clarify and narrow down the context a bit: by interface I mean a programmatic interface, like a Java interface or a pure abstract base class in C++. No other 'contracts' are involved.

flag

73% accept rate
You mean Dependency Injection (aka Inversion of Control)? – tehvan Mar 3 at 12:01
Dependency Inversion and Dependency Injection are the same afaik. – Trumpi Mar 3 at 12:02
I cannot find any information on Google for the "Design to Interfaces Principle" - can you explain what you mean by that? – Trumpi Mar 3 at 12:03
You probably mean "design by contract" – troelskn Mar 3 at 12:04
The correct quote is "Program to an interface, not an implementation" (from the book "Design Patterns: Elements of Reusable Software Architectures" by Erich Gamma, Richard Helm, Ralph Johnson and John Vlissides). – Jörg W Mittag Mar 3 at 23:59

2 Answers

vote up 3 vote down

Design to interfaces (as a variant of design by contract) supports dependency inversion. Both reduce coupling. However:

  • Design to interfaces and DBC says nothing about how objects are created (e.g. DIP, abstract factories, factory methods).
  • Dependency inversion (dependency injection) generally relies on interfaces, but focuses on the object lifecycle rather than class design. You can use DIP with abstract base classes if you wish, so you aren't really committed to pure interfaces.

The approaches tend to complement each other.

link|flag
A (pure) abstract base class = interface. – eljenso Mar 3 at 12:32
And where does the DIP talk about object creation/lifecycles? Maybe some patterns that fall into the "creation" or "lifecycle" category go well with DIP, but surely DIP as a principle doesn't care about that and is all about design. – eljenso Mar 3 at 12:36
vote up 0 vote down

"design by contract" and "dependency injection" are very closely related, but have different levels of abstraction. "design by contract" is a very general design principle, which can be supported by various techniques; In a language that has a Java-like class system, you one technique is to use interfaces to avoid concrete class dependencies. "dependency injection" is another technique, that often relies on the existence of interfaces to function (but need not always do that - It depends on the language). I would say "dependency injection" supports the principle of "design by contract".

link|flag

Your Answer

Get an OpenID
or

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