C++相当于 Java Enum.valueOf()

发布于 2024-08-29 06:28:10 字数 227 浏览 1 评论 0原文

可能的重复:
是否可以定义 enumalpha?

是否有 Java Enum.valueOf 的等效项(字符串)在 C++ 上?

Possible Duplicate:
Is it possible to define enumalpha?

Is there any equivalent of Java Enum.valueOf(string) on C++?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆° 2024-09-05 06:28:10

编译器没有生成名称表(除非您计算调试信息),但如果您创建一个(或使用例如 doxygen 解析源代码并可以以 XML 格式输出此类列表)那么你可以使用某种类型的字典,例如 std::map 将标识符转换为其数值。

There's no table of names generated by the compiler (unless you count debug information), but if you create one (or use e.g. doxygen which parses the source code and can output such lists in XML format) then you can use a dictionary of some type, such as std::map<string, int> to turn an identifier into its numeric value.

停顿的约定 2024-09-05 06:28:10

不,甚至没有更简单的任务(枚举到字符串),您需要自己编写它

No, there isn't even the much simpler task of going the other way (enum to string), you'd need to write it yourself

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文