我们是否使用依赖注入技术来实现依赖倒置原则?
我们是否使用依赖注入技术实现依赖倒置原则?
我是对的吗?
Do we achieve Dependency Inversion Principle using Dependency Injection technique?
Am I correct?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。依赖倒置说“不要自己寻找你的依赖,它们会提供给你。”依赖注入是一种从外部向对象提供依赖关系的方法。
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.
它是
两句话中的依赖倒置原则:
而
是的,
依赖注入模式是应用程序/代码组合问题的具体解决方案之一。是的,这个解决方案是依赖倒置原则的实现。最著名的阅读地点可能是 Martin Fowler - 控制容器反转和依赖注入模式。
yes it is
The Dependency Inversion Principle in two sentences:
and
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.