gpt4 book ai didi

c - C中枚举的大小是多少?

转载 作者:太空狗 更新时间:2023-10-29 16:14:25 25 4
gpt4 key购买 nike

我正在创建一组枚举值,但我需要每个枚举值都是 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/

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