top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain what is DI (Dependency Injection ) and how an object or function can get a hold of its dependencies ?

0 votes
283 views
Explain what is DI (Dependency Injection ) and how an object or function can get a hold of its dependencies ?
posted Dec 15, 2017 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

DI or Dependency Injection is a software design pattern that deals with how code gets hold of its dependencies. In order to retrieve elements of the application which is required to be configured when module gets loaded , the operation “config” uses dependency injection.

These are the ways that object uses to hold of its dependencies

  • Typically using the new operator, dependency can be created
  • By referring to a global variable, dependency can be looked up
  • Dependency can be passed into where it is required
answer Dec 15, 2017 by Shivaranjini
...