我们是否使用依赖注入技术来实现依赖倒置原则?

发布于 2024-11-01 11:03:19 字数 60 浏览 1 评论 0原文

我们是否使用依赖注入技术实现依赖倒置原则?

我是对的吗?

Do we achieve Dependency Inversion Principle using Dependency Injection technique?

Am I correct?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长发绾君心 2024-11-08 11:03:19

是的。依赖倒置说“不要自己寻找你的依赖,它们会提供给你。”依赖注入是一种从外部向对象提供依赖关系的方法。

Yes. Dependency inversion says “do not seek your dependencies yourself, they will be supplied to you.” Dependency injection is a way of supplying the dependencies to the object from the outside.

演多会厌 2024-11-08 11:03:19

它是

两句话中的依赖倒置原则:

High level modules should not depend upon low level modules. Both should depend upon abstractions.

Abstractions should not depend upon details. Details should depend upon abstractions.

是的,

依赖注入模式是应用程序/代码组合问题的具体解决方案之一。是的,这个解决方案是依赖倒置原则的实现。最著名的阅读地点可能是 Martin Fowler - 控制容器反转和依赖注入模式。

yes it is

The Dependency Inversion Principle in two sentences:

High level modules should not depend upon low level modules. Both should depend upon abstractions.

and

Abstractions should not depend upon details. Details should depend upon abstractions.

while

The Dependency Injection Pattern is one of the concrete solutions to the application/code composition problem. And yes this solution is implementation of the Dependency Inversion Principle. Probably the most known place to read is Martin Fowler - Inversion of Control Containers and the Dependency Injection pattern.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文