依赖注入和 Mixins 是一回事吗?

发布于 2024-10-03 21:08:39 字数 58 浏览 1 评论 0原文

我正在尝试适应 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 技术交流群。

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

发布评论

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

评论(1

人生百味 2024-10-10 21:08:39

不,它们非常不同。依赖注入意味着“给我完成任务所需的所有对象”。一个好的反例是使用其他单例类或具有其他硬编码依赖项的类。

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.

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