switch 以string為條件 做判斷的方法
阿新 • • 發佈:2019-02-18
c++和java語言中的switch都是隻接受 整型
c#語言中可以在switch中,以字串作為case的條件。
我覺得巨集定義不行,用map嘗試一下,下面是給你一個例子。
map<string,int> errorMap;
errorMap.insert(map<string,int>::value_type("ERR01",1));
errorMap.insert(map<string,int>::value_type("ERR02",2));
errorMap.insert(map<string,int>::value_type("ERR03",3));
char ch[12] ="ERR01";
switch(errorMap[ch])
{
case 1:
m_strEditReceiveMsg+="未知指令";
break;
case 2:
m_strEditReceiveMsg+="資料無效";
break;
case 3:
m_strEditReceiveMsg+="指令功能禁止";
break;
default:
m_strEditReceiveMsg += ch;
break;
}
c#語言中可以在switch中,以字串作為case的條件。
我覺得巨集定義不行,用map嘗試一下,下面是給你一個例子。
map<string,int> errorMap;
errorMap.insert(map<string,int>::value_type("ERR01",1));
errorMap.insert(map<string,int>::value_type("ERR02",2));
errorMap.insert(map<string,int>::value_type("ERR03",3));
char ch[12] ="ERR01";
switch(errorMap[ch])
{
case 1:
m_strEditReceiveMsg+="未知指令";
break;
case 2:
m_strEditReceiveMsg+="資料無效";
break;
case 3:
m_strEditReceiveMsg+="指令功能禁止";
break;
default:
m_strEditReceiveMsg += ch;
break;
}