views:

16

answers:

1

I was reading Wikipedia's definition of Dependency inversion principle, and it uses those two terms, which I wasn't able to figure out..
What are they and what does Dependency inversion principle have to do with them?

Thanks.

A: 

The definition of those are given in the introductory sentence:

high level: policy setting
low level: dependency modules.

In laymen's terms: high level modules depend on low level modules, but shouldn't depend on their implementation. This can be achieved by using interfaces, thus decoupling the definition of the service from the implementation.

Femaref