在枚举中使用 static

发布于 2024-10-11 10:11:21 字数 163 浏览 3 评论 0原文

是否可以在枚举中使用“静态”:

private enum pdfMode
{
   generate,
   static
}

显然“静态”是一个关键字。

如果我有一个 pdfMode 就好了,它确实在应用程序中被称为“静态”。

Is it possible to use 'static' within an enum as such:

private enum pdfMode
{
   generate,
   static
}

Obviously 'static' is a key word.

It would be nice as I have a pdfMode which is indeed referred to within the app as 'static'.

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

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

发布评论

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

评论(4

自由范儿 2024-10-18 10:11:21

要使用关键字作为标识符,请使用 @ 符号:

@static

但这里建议使用 Pascal 大小写。

private enum PdfMode
{
   Generate,
   Static
}

请参阅枚举类型命名指南

对枚举类型和值名称使用 Pascal 大小写。

To use a keyword as an identifier use the @ symbol:

@static

But using Pascal case is advisable here.

private enum PdfMode
{
   Generate,
   Static
}

See the Enumeration Type Naming Guidelines:

Use Pascal case for Enum types and value names.

七堇年 2024-10-18 10:11:21

一种可能性是在枚举内使用 GenerateStatic。无论如何,IMO 大写字母在那里看起来最好。

One possibility is to use Generate and Static inside the enum. IMO uppercase looks best there anyway.

嘿看小鸭子会跑 2024-10-18 10:11:21

您可以使用 @ 转义关键字,如下所示:

private enum pdfMode
{
    generate,
    @static
}

You can escape the keyword using @, like this:

private enum pdfMode
{
    generate,
    @static
}
烂柯人 2024-10-18 10:11:21
private enum PdfMode
{
   PdfMode_Generate,
   PdfMode_Static
}

以免与

private enum xxxType
{
   xxxType_Moving,
   xxxType_Static
}
private enum PdfMode
{
   PdfMode_Generate,
   PdfMode_Static
}

so as not it conflict with

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