重命名保留字的属性/方法名称的最佳实践?
我正在创建一个类。 当您的首选名称是保留字时,命名属性/方法的最佳实践是什么?
I'm creating a class. What's the best practice for naming properties/methods when your preferred name is a reserved word?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我通常会尝试想出一些同义的替代词或变体,尽管听起来并不适合您。
或者,您可以使用“@”前缀(在 C# 中)或 [方括号](在 VB.NET 中)来显式避免与语言中的保留字发生冲突。
I usually try to think of some synonymous alternative word, or variation, though it doesn't sound like that is applicable for you.
Alternatively, you can use the '@' prefix (in C#) or [square braces] (in VB.NET) to explicitly avoid the conflict with reserved words in the language.
在 VB.NET 中,您可以将属性名称括在方括号内:(
我不确定 C#,但您也将帖子标记为 vb.net)
In VB.NET, you can enclose the property name within square brackets:
(I'm not sure about C#, but you also tagged the post as vb.net)
make 和 model 都不是 C# 保留字。 如果您确实需要使用保留字,最好的办法就是尝试想出一个同义词。
Neither make nor model are reserved C# words. In the case that you do need to use a reserved word, the best thing to do is to try to come up with a synonym.