0
我正在使用visual studio C++並在我的程序中使用這些行。
每當我輸入獲取狀態,輸出不是「好」。輸出將始終是獨立於Cstring strText的「無效命令」。前兩個條件不起作用。如果不使用條件
請幫忙。它應該根據輸入的strText工作。
if (strText == _T("Get status"))
{
MessageBox(_T("Good"));
}
else if (strText == _T("change"))
{
MessageBox(_T("Bad"));
}
else
{
MessageBox(_T("Invalid Command"));
}
什麼類型是strText? –
和_T返回什麼類型? – Alex
CString strText; – Nabeel