依赖注入和 Mixins 是一回事吗?
我正在尝试适应 PHP 5.3 的方式,但我很困惑。 :o
他们都完成了同样的事情吗?
I am trying to get accustomed to the ways of PHP 5.3 and I am confused. :o
Are they both accomplishing the same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它们非常不同。依赖注入意味着“给我完成任务所需的所有对象”。一个好的反例是使用其他单例类或具有其他硬编码依赖项的类。
Mixin 本质上是对象或类,您可以或多或少地与现有对象或类合并,以向该对象的使用者提供其行为。
No, they are very different. Dependency injection means "give me all of the objects I need to do my task." A good counter-example would be a class that uses other singleton classes or has other hard-coded dependencies.
Mixins are essentially objects or classes that you can more or less merge with an existing object or class to provide its behavior to the consumer of that object.