如何将枚举类型变量转换成C++中的字符串?
这里我们将看到如何在C++中将一些枚举类型数据转换成字符串。没有直接这样的函数可以做到这一点。但是,我们可以创建自己的函数将枚举转换成字符串。
我们将创建一个函数,将枚举值作为参数,并且从此函数中手动返回枚举名称作为字符串。
示例代码
#include <iostream> using namespace std; enum Animal {Tiger, Elephant, Bat, Dog, Cat, Mouse}; string enum_to_string(Animal type) { switch(type) { case Tiger: return "Tiger"; case Elephant: return "Elephant"; case Bat: return "Bat"; case Dog: return "Dog"; case Cat: return "Cat"; case Mouse: return "Mouse"; default: return "Invalid animal"; } } int main() { cout << "The Animal is : " << enum_to_string(Dog) << " Its number: " << Dog <<endl; cout << "The Animal is : " << enum_to_string(Mouse) << " Its number: " << Mouse << endl; cout << "The Animal is : " << enum_to_string(Elephant) << " Its number: " << Elephant; }
输出
The Animal is : Dog Its number: 3 The Animal is : Mouse Its number: 5 The Animal is : Elephant Its number: 1
广告