Unity 中的 Bind<>.ToMethod 等效项?

发布于 2024-12-15 10:38:10 字数 135 浏览 1 评论 0 原文

Unity 中是否有等效的 Ninject 工厂方法?我正在寻找以下示例的统一等效项:

Bind<IWeapon>().ToMethod(context => new Sword());

Is there an equivalent of Ninject Factory Methods in Unity? I'm looking for the unity equivalent of the following example:

Bind<IWeapon>().ToMethod(context => new Sword());

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

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

发布评论

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

评论(1

温暖的光 2024-12-22 10:38:10

是的,InjectionFactory:

container.RegisterType<IWeapon>(
    new InjectionFactory(con => new Sword());

当然,在这种特殊情况下我不会使用它,因为容器的默认行为将通过简单的类型映射来完成此任务。我认为您的实际代表要复杂一些。

Yes, the InjectionFactory:

container.RegisterType<IWeapon>(
    new InjectionFactory(con => new Sword());

Of course, I wouldn't use it in this particular case since the default behavior of the container would accomplish this with a simple type mapping. I assume your actual delegates are a bit more complex.

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