Home Backend Development PHP Tutorial Inversion of control principle, what is its connection with dependency injection

Inversion of control principle, what is its connection with dependency injection

Aug 12, 2020 am 10:47 AM
dependency injection Inversion of control

Inversion of Control (IOC)

First, let’s look at an example.

class Person
{
   private $name = '';
   private $age = 0;

   public function __construct(string $name, int $age)
   {
       $this->name = $name;
       $this->age = $age;
   }

   public function eat ()
   {
       echo '吃东西' . PHP_EOL;
   }

   public function drink ()
   {
       echo '喝水' . PHP_EOL;
   }

   public function sleep ()
   {
       echo '睡觉' . PHP_EOL;
   }

   public function wakeup ()
   {
       echo '起床' . PHP_EOL;
   }

   public function drive ()
   {
       echo '开车' . PHP_EOL;
   }

   public function wash ()
   {
       echo '洗漱' . PHP_EOL;
   }
}
Copy after login

Xiao Ming now needs to go to work when he wakes up in the morning, so Xiao Ming needs to do the following things

$person = new Person('小明', 24);
$person->wakeup();
$person->wash();
$person->eat();
echo '带上车钥匙、手机、电脑' .PHP_EOL;
$person->drive();
Copy after login

The above process is controlled by the programmer himself. Now, let's find a way to let the framework control the process. We add a new method in the Person class, the code is as follows:

public function work (callable $bring)
{
    $this->wakeup();
    $this->wash();
    $this->eat();
    $bring();
    $this->drive();
}
Copy after login

Xiao Huang also needs to go to work. Now he only needs to install the framework's guidance to complete the action of going to work.

$person = new Person('小黄', 29);
$person->work(function ()
{
    echo '带上手机、车钥匙、文件' . PHP_EOL;
});
Copy after login

The modified code has completed the inversion of control. In the previous code, the entire work process was controlled by the programmer, but in the modified code, the framework controls the work process. The flow control of the program is "reversed" from the programmer to the framework.

Now we can give the definition of inversion of control:

In fact, inversion of control is a relatively general design idea, not a specific implementation method, and is generally used for guidance. Framework level design. The "control" mentioned here refers to the control of the program execution flow, while "inversion" refers to the programmer controlling the execution of the entire program before using the framework. After using the framework, the execution flow of the entire program is controlled through the framework. Control of the process is "reversed" from the programmer to the framework.

Dependency injection

Inversion of control is a design idea, while dependency injection is a specific coding technique, and dependency injection is the implementation The most common technique for inversion of control. Dependency injection looks "high-end", but it is actually very easy to understand and master.

So what exactly is dependency injection? We can summarize it in one sentence: instead of creating dependent class objects inside the class through new(), instead, after the dependent class objects are created externally, they are passed (or injected) through constructors, function parameters, etc. class use.

Let’s look at an example:

interface Log
{
   function write (string $msg);
}

class TextLog implements Log
{
   public function __construct($dirname, $txtname)
   {
       $this->makeDir($dirname);
       $this->mkTxt($txtname);
   }

   private function makeDir (string $dirName) :void
   {
       // do something
   }

   private function mkTxt (string $txtName) :void
   {
       // do something
   }

   public function write (string $msg)
   {
       // do something
   }
}

class RedisLog implements Log
{
   private $redis = null;
   private $key = '';

   public function __construct(string $key)
   {
       $this->redis = '...'; // 获取redis实例
       $this->key = $key;
       // ...
   }

   public function write (string $msg)
   {
       // do something
   }
}

class App
{
   public function run ()
   {
       // do something

       // 记录日志
       (new RedisLog('log'))->write('框架运行信息记录');
   }
}
Copy after login

As you can see, the App class depends on the RedisLog class. If we no longer use redis to record days in the future, but instead use text files, then we need Modify the code in run.

Now, we switch to using the dependency injection technique to rewrite, the code is as follows;

class App
{
   private $logHandle = null;

   public function __construct(Log $log)
   {
       $this->logHandle = $log;
   }

   public function run ()
   {
       // do something

       // 记录日志
       $this->logHandle->write('框架运行信息记录');
   }
}
Copy after login

The rewritten App class no longer depends on the RedisLog class, and can be replaced with other Log classes at any time. As long as the class implements the write method. As you can see, dependency injection can flexibly replace dependent classes. In addition, it is the most effective way to write testable code.

There is an article about dependency injection in Zhihu. It is very easy to understand. You can also read it. The link is as follows:

A brief discussion on inversion of control and dependency injection https://zhuanlan.zhihu.com/p/33492169

The above is the detailed content of Inversion of control principle, what is its connection with dependency injection. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

A step-by-step guide to understanding dependency injection in Angular A step-by-step guide to understanding dependency injection in Angular Dec 02, 2022 pm 09:14 PM

This article will take you through dependency injection, introduce the problems that dependency injection solves and its native writing method, and talk about Angular's dependency injection framework. I hope it will be helpful to you!

How to use dependency injection (Dependency Injection) in the Phalcon framework How to use dependency injection (Dependency Injection) in the Phalcon framework Jul 30, 2023 pm 09:03 PM

Introduction to the method of using dependency injection (DependencyInjection) in the Phalcon framework: In modern software development, dependency injection (DependencyInjection) is a common design pattern aimed at improving the maintainability and testability of the code. As a fast and low-cost PHP framework, the Phalcon framework also supports the use of dependency injection to manage and organize application dependencies. This article will introduce you how to use the Phalcon framework

Dependency injection using JUnit unit testing framework Dependency injection using JUnit unit testing framework Apr 19, 2024 am 08:42 AM

For testing dependency injection using JUnit, the summary is as follows: Use mock objects to create dependencies: @Mock annotation can create mock objects of dependencies. Set test data: The @Before method runs before each test method and is used to set test data. Configure mock behavior: The Mockito.when() method configures the expected behavior of the mock object. Verify results: assertEquals() asserts to check whether the actual results match the expected values. Practical application: You can use a dependency injection framework (such as Spring Framework) to inject dependencies, and verify the correctness of the injection and the normal operation of the code through JUnit unit testing.

Dependency injection pattern in Golang function parameter passing Dependency injection pattern in Golang function parameter passing Apr 14, 2024 am 10:15 AM

In Go, the dependency injection (DI) mode is implemented through function parameter passing, including value passing and pointer passing. In the DI pattern, dependencies are usually passed as pointers to improve decoupling, reduce lock contention, and support testability. By using pointers, the function is decoupled from the concrete implementation because it only depends on the interface type. Pointer passing also reduces the overhead of passing large objects, thereby reducing lock contention. Additionally, DI pattern makes it easy to write unit tests for functions using DI pattern since dependencies can be easily mocked.

In-depth understanding of inversion of control in Go language In-depth understanding of inversion of control in Go language Apr 08, 2024 am 08:51 AM

Inversion of Control (IoC) is a software design pattern that separates object dependencies into hard-coded couplings. In Go, IoC can be achieved through interfaces and dependency injection (DI): Interface: Defines the set of methods that types following the interface must implement. Dependency injection: External configuration or code generation sets object dependencies. Tips include: Constructor injection: Specifying dependencies in the constructor. Field injection: Use reflection or code generation to inject dependencies into fields. Interface injection: Passing interface types as parameters to functions or methods.

Dependency injection and service container for PHP functions Dependency injection and service container for PHP functions Apr 27, 2024 pm 01:39 PM

Answer: Dependency injection and service containers in PHP help to flexibly manage dependencies and improve code testability. Dependency injection: Pass dependencies through the container to avoid direct creation within the function, improving flexibility. Service container: stores dependency instances for easy access in the program, further enhancing loose coupling. Practical case: The sample application demonstrates the practical application of dependency injection and service containers, injecting dependencies into the controller, reflecting the advantages of loose coupling.

How to use dependency injection for unit testing in Golang? How to use dependency injection for unit testing in Golang? Jun 02, 2024 pm 08:41 PM

Using dependency injection (DI) in Golang unit testing can isolate the code to be tested, simplifying test setup and maintenance. Popular DI libraries include wire and go-inject, which can generate dependency stubs or mocks for testing. The steps of DI testing include setting dependencies, setting up test cases and asserting results. An example of using DI to test an HTTP request handling function shows how easy it is to isolate and test code without actual dependencies or communication.

Go Language: Dependency Injection Guide Go Language: Dependency Injection Guide Apr 07, 2024 pm 12:33 PM

Answer: In Go language, dependency injection can be implemented through interfaces and structures. Define an interface that describes the behavior of dependencies. Create a structure that implements this interface. Inject dependencies through interfaces as parameters in functions. Allows easy replacement of dependencies in testing or different scenarios.

See all articles