将枚举映射到字符串是 C 开发中的常见要求。前面提供的文章重点讨论了这个问题并讨论了潜在的解决方案。作者最初建议使用 switch 语句的简单方法,但对其类 C 性质表示担忧。
另一种方法是利用 std::map
std::map<MyEnum, const char*> MyMap; map_init(MyMap) (eValue1, "A") (eValue2, "B") (eValue3, "C") ;
map_init 类有助于运算符()的链接,类似于运算符
这是map_init类和助手的实现:
template<typename T> struct map_init_helper { T& data; map_init_helper(T& d) : data(d) {} map_init_helper& operator() (typename T::key_type const& key, typename T::mapped_type const& value) { data[key] = value; return *this; } }; template<typename T> map_init_helper<T> map_init(T& item) { return map_init_helper<T>(item); }
文章还提到 boost::assign 作为提供类似功能的现有库。通过使用map或map-init类,开发人员可以轻松地将枚举值转换为相应的字符串,以提高可读性和可用性。
以上是如何有效地将 C 枚举转换为字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!