Answers for "why is dependency injection used"

14

dependency injection

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.
Posted by: Guest on March-14-2021
4

dependency injection

Class A   Class B   if A uses some methods of B then its a dependency injection
Posted by: Guest on February-24-2021

Browse Popular Code Answers by Language