我正在使用 Visual Studio C++ 并在我的程序中使用这些行。
每当我输入 Get status 时,输出都不是“好”。输出将始终是独立于 Cstring strText 的“无效命令”。前两个条件都不行。
请帮助。它应该根据输入 strText 工作。
if ( strText == _T("Get status") )
{
MessageBox(_T("Good"));
}
else if ( strText == _T("change") )
{
MessageBox(_T("Bad"));
}
else
{
MessageBox(_T("Invalid Command"));
}