标签: .net naming-conventions naming method-names
是否存在完全返回全新对象的方法的命名约定?
“生成”? “创造”?
答案 0 :(得分:3)
可以是@David建议的Create,或者GetNew - 如GetNewProduct()。 我更喜欢GetNew,因为 Create 更多地用于工厂方法, GetSomething 用于普通对象,然后 GetNewSomething 以强调实际上新对象是被创造。
Create
GetNew
答案 1 :(得分:-1)
微软有任何公开推荐的公约。