C++相当于 Java Enum.valueOf()
可能的重复:
是否可以定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编译器没有生成名称表(除非您计算调试信息),但如果您创建一个(或使用例如 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.不,甚至没有更简单的任务(枚举到字符串),您需要自己编写它
No, there isn't even the much simpler task of going the other way (enum to string), you'd need to write it yourself