标签: c++
我有如下的宏变量集,想将其转换为std :: string类型。我该怎么办?
#define IP0 0 #define IP1 1
我想要
std::string test = foo(); //test contains "IP0"
谢谢