我正在尝试使用以下代码解析控制台应用程序中的运行参数:
int _tmain(int argc, _TCHAR* argv[])
{
if(argv[1] == _T("arg1")) cout<<"Argument1 was passed";
_getch();
return 0;
}
我的代码不起作用。我的意思是,它运行,但控制台是空的。我正在使用Use Unicode Character Set
Visual Studio 2012(在 Windows 7 上)中的选项进行编译。我的错在哪里?!