返回完全新对象的方法是否有命名约定?

发布于 2024-12-01 03:03:31 字数 48 浏览 0 评论 0原文

返回完全新对象的方法是否有命名约定?

“产生” ? “创造” ?

Is there a naming convention for method that returns completely a brand new object?

"Generate" ? "Create" ?

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

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

发布评论

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

评论(3

去了角落 2024-12-08 03:03:31

它可以像 @David 建议的那样创建,或者 GetNew - 就像 GetNewProduct() 一样。
我更喜欢 GetNew,因为 Create 更多地用于工厂方法,GetSomething 用于普通对象,然后 GetNewSomething 强调实际上是一个新对象正在被创建。

It can be Create as @David suggested, or GetNew - like GetNewProduct().
I prefer GetNew, because Create is more used in factory methods, GetSomething for plain objects, and then GetNewSomething to emphasize that actually a new object is being created.

泪之魂 2024-12-08 03:03:31

酒吧酒吧Foo.barFactory();是经常使用的一种。
如果 Bar 是一个接口,则可以通过 Foo 的 barFactory https://en.wikipedia 选择确切的 Bar

。 org/wiki/Factory_method_pattern

Bar bar Foo.barFactory(); is often one used.
if Bar is an interface, the exact Bar can be picked by Foo's barFactory,

https://en.wikipedia.org/wiki/Factory_method_pattern

国际总奸 2024-12-08 03:03:31

Microsoft 对此有任何公开推荐的约定。

There is any public Microsoft recommended convention for that.

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