C++枚举转为字符串

#include
#define enum_to_string(x) #x

enum sex
{
boy,
girl,
};

int main()
{
std::cout << enum_to_string(sex::boy) << std::endl;
system(“pause”);
}

你可能感兴趣的:(C++枚举转为字符串)