- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在创建一组枚举值,但我需要每个枚举值都是 64 位宽。如果我没记错的话,枚举通常与 int 大小相同;但我想我在某处读到(至少在 GCC 中)编译器可以使枚举成为它们保持其值所需的任何宽度。那么,是否可以使用 64 位宽的枚举?
最佳答案
取自当前的 C 标准 (C99):http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1256.pdf
6.7.2.2 Enumeration specifiers
[...]
Constraints
The expression that defines the value of an enumeration constant shall be an integerconstant expression that has a value representable as an int.
[...]
Each enumerated type shall be compatible with char, a signed integer type, or anunsigned integer type. The choice of type is implementation-defined, but shall becapable of representing the values of all the members of the enumeration.
并不是说编译器擅长遵循标准,但本质上:如果您的枚举包含除 int 之外的任何其他内容,那么您就处于“不受支持的行为可能会在一两年内反噬您”的深度。
更新:C 标准 (C11) 的最新公开草案:http://www.open-std.org/JTC1/SC22/WG14/www/docs/n1570.pdf包含相同的条款。因此,这个答案仍然适用于 C11。
关于c - C中枚举的大小是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/366017/
我是一名优秀的程序员,十分优秀!