我有一个枚举类型:
enum class MyEnumType { A , B , C };
我想将这些枚举映射到描述属性;我非常喜欢这种方法:
template <typename T>
struct MyEnumTypeDescription
{
inline const char* get() { static_assert("description not implemented for this type"); };
};
template<>
const char* MyEnumTypeDescription<MyEnumType::A>::get() { return "A"; }
template<>
const char* MyEnumTypeDescription<MyEnumType::B>::get() { return "B"; }
....
有点冗长但没那么糟糕,对吧?
现在,麻烦的部分是当我想在运行时从枚举器中获取描述时,这意味着我需要创建一个大开关函数
const char* getDescriptionFromEnumerator( MyEnumType t )
{
case MyEnumType::A:
return MyEnumTypeDescription<MyEnumType::A>::get();
.....
}
是否有一些元编程(模板或宏)魔法可以帮助我避免所有这些样板和容易出错的编码?