gpt4 book ai didi

c++ - 枚举类型中 const 说明符的作用是什么?

转载 作者:IT老高 更新时间:2023-10-28 12:48:09 26 4
gpt4 key购买 nike

enum foo : const unsigned int
{
F,
S,
T
};

void func()
{
foo p;
p = F;
}

上面的编译所以底层类型不是 const 类型?

最佳答案

const 限定符在 enum-base 的规范中被忽略;它只是期望将整数类型用作枚举类型的基础类型,指定 const(或 volatile)没有多大意义。

(强调我的)

colon (:), followed by a type-specifier-seq that names an integral type (if it is cv-qualified, qualifications are ignored) that will serve as the fixed underlying type for this enumeration type

根据标准,[dcl.enum]/2 :

(强调我的)

The type-specifier-seq of an enum-base shall name an integral type; any cv-qualification is ignored.

关于c++ - 枚举类型中 const 说明符的作用是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56824226/

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