gpt4 book ai didi

c++ - 如何在 C++ 中将 typedef 枚举转换为使用枚举

转载 作者:行者123 更新时间:2023-12-05 04:38:16 28 4
gpt4 key购买 nike

我正在尝试探索 C++ 中的“using”,目前我想将 typedef 转换为 using。

例如,

typedef enum tag_EnumType : int {
A,
B,
C,
} EnumType;

我尝试将其转换为如下

using EnumType = enum tag_EnumType : int {
A,
B,
C,
};

但是,编译失败了。有人能帮忙吗?提前致谢。

事实上,我正在从事一个巨大的项目。一些 typedef enum 可以重写为 using,但其他不能。有谁知道原因吗?它与 namespace 有关吗?

最佳答案

typedef enum 是一种创建枚举的 C 方法。如果你想要 C++ 的方式,你最好写:

enum EnumType : int {
A,
B,
C,
};

在 C++11 及更高版本中,范围枚举也可用,这样可以防止名称冲突。

 enum class EnumType : int {
A,
B,
C,
};

using 语句用于其他 typedef,一些示例:

using IntVector = std::vector<int>;
using Iterator = IntVector::Iterator;
using FuncPtr = int(*)(char, double);

关于c++ - 如何在 C++ 中将 typedef 枚举转换为使用枚举,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70629456/

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