你有什么办法可以缩短这个类名吗?

发布于 2024-09-14 12:33:05 字数 267 浏览 4 评论 0原文

我有一个名为 PriceStep 的类。我在名为 PriceStepSearchSpace 的类中保留了 PriceStep 对象的列表。现在,我需要为不同的产品提供不同的 PriceStepSearchSpace 对象,并且我需要将它们保存在某种字典中。我将这个新类命名为 PriceStepSearchSpaceRepository

你能想出一个更简单/更短的名字吗?

I have a class called PriceStep. I keep a list of PriceStep objects in a class called PriceStepSearchSpace. Now I am required to have different PriceStepSearchSpace objects for different products and I need to keep them in some sort of a dictionary. I called this new class PriceStepSearchSpaceRepository.

Can you think of a simpler/shorter name?

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

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

发布评论

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

评论(4

债姬 2024-09-21 12:33:05

您可以将其命名为 Repository 并将其放入名为 PriceSteps.Searchspaces 的命名空间中。

You could call it Repository and put it in a namespace called PriceSteps.Searchspaces.

盗梦空间 2024-09-21 12:33:05

如果我不太可能拥有这些对象的任何其他类型的集合,我可能会将其称为 PriceStepSearchSpaces。除此之外,我喜欢 Timwi 的想法,即将相关类放入命名空间以防止前缀重复。

I might call it PriceStepSearchSpaces if it was unlikely that I would have any other type of collection of those objects. Otherwise, I like Timwi's idea of putting related classes into a namespace to prevent duplication of prefixes.

你另情深 2024-09-21 12:33:05

我会为您的第一个选择 SearchSpace ,为第二个选择 SearchSpaceDictionary

无需在父类前面加上子类名称!

但是,您可能想要重新考虑您的对象模型,很难根据您提供的信息提供相关建议。

I would go with SearchSpace for your first and SearchSpaceDictionary for the second.

There's no need to preface a parent class with it's child class name!

However, you may want to re-think your object model, it's hard to give advice about that based on the info you provided.

初与友歌 2024-09-21 12:33:05

价格步长价格步骤按产品定价

PriceStep. PriceSteps. PriceStepsByProduct.

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