我应该输入依赖注入变量吗?

发布于 2024-10-07 20:08:27 字数 540 浏览 3 评论 0原文

假设 Foo 类需要注入 Bar 类。我应该输入提示方法参数,因为我知道 Bar 需要是什么,还是不应该输入提示,以防 Bar 将来发生变化?

class Foo {
    public function __construct( Bar $bar ) {
        // do something
    }
}

或者:

class Foo {
    public function __construct( $bar ) {
        // do something
        // the wrong class could be passed in here, but I'm also future-proof in case
        // another class provides similar functionality to Bar
    }
}

据推测,“最好”的答案是让 Bar 实现一个接口,但我真的觉得创建一个在可预见的未来只有一个扩展类的接口很愚蠢。最佳实践是什么?

Let's say class Foo requires injection of class Bar. Should I typehint the method parameter because I know what Bar needs to be, or should I not typehint it, in case Bar changes in the future?

class Foo {
    public function __construct( Bar $bar ) {
        // do something
    }
}

or:

class Foo {
    public function __construct( $bar ) {
        // do something
        // the wrong class could be passed in here, but I'm also future-proof in case
        // another class provides similar functionality to Bar
    }
}

Presumably, the "best" answer is to make Bar implement an interface, but I really feel silly creating an interface that will only have one extension class for the foreseeable future. What is the best practice?

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

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

发布评论

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

评论(1

近箐 2024-10-14 20:08:27

简单、容易的解决方案:现在将 typehint 键入 Bar,然后创建一个界面并稍后更改 typehint。如果您正确使用重构实践并良好地设计代码,则更改以后应该不会产生任何影响。

The simple, easy solution: typehint to Bar for now, and create an interface and change the typehint later. If you use refactoring practices properly and design your code well, the change should have no effect later on.

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