对于看起来标准/默认的接口的实现是否有标准的命名约定?

发布于 2024-10-27 15:36:42 字数 72 浏览 0 评论 0原文

尝试编写接口代码,以便更好地进行单元测试和设计。我正在编码的一些东西似乎除了明显的实现之外没有任何其他实现。有这方面的命名约定吗?

Trying to code to an interface so that unit testing and design are better. Some things that I am coding doesn't seem to have any other implementation other than the obvious one. Is there a naming convention for this?

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

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

发布评论

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

评论(1

烛影斜 2024-11-03 15:36:42

如果您只有一种实现,为什么不以它来命名您的接口呢?如果出现第二个实现,您可以随时重构名称。

大多数时候,我们确实会根据激发接口的实现来命名接口。如果我们随后发现获得了该接口的第二个实现,我们要么将原始实现重命名为更具体,要么将接口重命名为更通用。

If you've only got one implementation, why not name your interface after it? You can always refactor the name later, if a second implementation comes along.

Most of the time, we do name our interfaces after the implementation that inspired them. If we then find that we get a second implementation of that interface, we'll either rename the original implementation to be more specific or rename the interface to be more general.

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