我需要將字符串轉換爲枚舉。字符串到枚舉模板錯誤
的想法,這是我的代碼:
#ifndef ENUMPARSER_H
#define ENUMPARSER_H
#include <iostream>
#include <map>
#include <string>
enum MYENUM
{
VAL1,
VAL2
};
using namespace std;
template <typename T>
class EnumParser
{
map<string, T> enumMap;
public:
EnumParser();
T ParseEnum(const string &value)
{
map<string, T>::const_iterator iValue= enumMap.find(value);
if(iValue!=enumMap.end())
return iValue->second;
}
};
EnumParser<MYENUM>::EnumParser()
{
enumMap["VAL1"] = VAL1;
enumMap["VAL2"] = VAL2;
}
#endif // ENUMPARSER_H
當特林編譯它,我得到以下錯誤:
我的工作QT 4.8。
我的錯誤是什麼?
typename map :: const_iterator iValue = enumMap.find(value); const_iterator是相關名稱。 –
ForEveR