gpt4 book ai didi

c# - 从 int 继承的枚举

转载 作者:IT王子 更新时间:2023-10-29 04:21:03 51 4
gpt4 key购买 nike

我在这段代码中到处都是:

public enum Blah: int
{
blah = 0,
blahblah = 1
}

为什么要继承自int?有必要吗?

最佳答案

根据documentation :

Every enumeration type has an underlying type, which can be any integral type except char. The default underlying type of the enumeration elements is int.

所以,不,您不需要使用 int。它适用于任何整数类型。如果您不指定任何内容,它将使用 int 作为默认值,并且这种类型将用于将枚举存储到内存中。

关于c# - 从 int 继承的枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6348924/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com