gpt4 book ai didi

unit-testing - 可以为普遍使用的依赖项使用服务定位器吗?

转载 作者:行者123 更新时间:2023-11-28 20:20:11 25 4
gpt4 key购买 nike

我们在我们的代码库中严格遵守控制反转,但这会产生 hell 般的构造函数(是的,我知道这意味着我们的类不够内聚,这是一项正在进行的工作)。
问题是,有时这些依赖项非常愚蠢,例如启用日期模拟的 DateTime 包装器、记录器或 TaskFactory 包装器,它们与类的业务没有直接关系,我认为它们不需要显式介绍。

我们能否通过为那些在整个系统中传递的项目使用服务定位器来减轻 ctors 的负担?会有什么缺点?

最佳答案

Could we ease the load on our ctors by using a service locator for those items which are passed all over the system?

不,依赖关系仍然存在,但它不是显式的,现在是隐式的。

只要你有too many constructors arguments, at least you know that you have a problem .如果你引入一个服务定位器,你仍然有你原来的问题,但现在你也有 violated encapsulation .你只是让潜在的问题更难被发现,而没有解决任何问题。

Service Locator is a bona fide anti-pattern ;它解决不了任何问题。

关于unit-testing - 可以为普遍使用的依赖项使用服务定位器吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33944520/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com