重命名保留字的属性/方法名称的最佳实践?

发布于 2024-07-18 16:59:52 字数 47 浏览 5 评论 0原文

我正在创建一个类。 当您的首选名称是保留字时,命名属性/方法的最佳实践是什么?

I'm creating a class. What's the best practice for naming properties/methods when your preferred name is a reserved word?

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

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

发布评论

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

评论(3

不再见 2024-07-25 16:59:52

我通常会尝试想出一些同义的替代词或变体,尽管听起来并不适合您。

或者,您可以使用“@”前缀(在 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.

蛮可爱 2024-07-25 16:59:52

在 VB.NET 中,您可以将属性名称括在方括号内:(

Public Property [Make] As String

我不确定 C#,但您也将帖子标记为 vb.net)

In VB.NET, you can enclose the property name within square brackets:

Public Property [Make] As String

(I'm not sure about C#, but you also tagged the post as vb.net)

草莓味的萝莉 2024-07-25 16:59:52

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.

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