提供商模型和绩效

发布于 2024-07-10 16:51:39 字数 53 浏览 7 评论 0原文

使用提供者模式对性能有影响吗?

它是否依赖于每个实例化的反射或其他什么?

Are there any performance implications with using the provider pattern?

Does it rely on reflection for each instantiation or anything?

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

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

发布评论

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

评论(2

短叹 2024-07-17 16:51:39

是的,提供程序模型通常涉及少量反射,因此会对性能产生一点影响,但是,这仅在提供程序对象的实例化中。 一旦对象被实例化,就可以正常访问它(通常通过接口)。 与硬编码模型相比,性能应该差别很小,但从编程角度获得的收益远远超过任何性能损失。 假设提供商实际上可能有一天会发生变化。 如果没有,只需对其进行硬编码。

Yes, the provider model usually involves a small amount of reflection, and therefore, there is going to be a little bit of a performance hit, however, it is only in the instantiation of the provider object. Once the object is instantiated, it is accessed as normal (usually via an interface). The performance versus a hard-coded model should have very little difference, but the gain you get from the programming perspective far outweighs any performance penalty. Assuming the provider actually may change one day. If not, just hard-code it.

若水微香 2024-07-17 16:51:39

每个应用程序域都会实例化一次提供程序。 尽管通过反射更新对象比内联更新对象要慢,但它仍然非常非常快。 我想说大多数商业应用程序不存在性能问题。

Providers are instanced once per app-domain. Although newing up an object via reflection is slower than doing it inline, it is still very, very fast. I would say there is no performance concern for most business apps.

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