为什么在枚举声明中使用 int ?

发布于 2024-08-28 11:14:39 字数 153 浏览 3 评论 0原文

在下面的枚举声明中使用 : int 有什么意义?

public enum AAType : int
{
    Folder = 0,    
    File = 1,   
    Link = 2
}

What's the point of using : int in the enum declaration as following?

public enum AAType : int
{
    Folder = 0,    
    File = 1,   
    Link = 2
}

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

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

发布评论

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

评论(3

魔法少女 2024-09-04 11:14:40

事实上,Enum 是一个专门的 Int,您可以对每个 Enum 值使用字节(Apple = 1、Pear = 2、Orange = 4),然后您可以在 Piped 中传递 Enum 并根据字节值确定要执行的操作(查看Reflection.BindingFlags等)。

The fact that an Enum is a specialized Int you can use bytes for each Enum value (Apple = 1, Pear = 2, Orange = 4) and then you can pass the Enums in Piped and determine what to do based on the byte value (look at Reflection.BindingFlags, etc).

温柔嚣张 2024-09-04 11:14:39

enum 的默认基础类型是 int,因此通过显式指定它,您(也许)只会获得清晰度,但其行为与 相同: int 被省略。

The default underlying type of an enum is int, so by specifying it explicitly you only (perhaps) gain in clarity, but the behavior's just the same as if : int was omitted.

-黛色若梦 2024-09-04 11:14:39

enum 的默认支持类型是 int。您可以将支持类型更改为其他类型,例如 shortlong。指定 int 可能只是为了清楚起见。

The default backing type of enum is int. You can change the backing type to something else, like short or long. Specifying int is probably just for clarity.

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