c++如何实现判断一个值是否属于enum中的值
#include<iostream>
#include<map>
#include <type_traits>
using namespace std;
enum SendMode {
text,
bin
};
int main(int argc, char* argv[])
{
std::map<string, string>a;
a["key"] = "text";
map<string, string>::iterator it;
for ( it = a.begin(); it !=a.end(); it++)
{
cout << it->first << endl;
cout << it->second << endl;
if (it->second.find(SendMode::bin))//我的目的是为了判断map value是不是SendMode中的一个值,但是不知为什么还会输出yes
{
cout << "yes" << endl;
}
}
}