标签:
在MFC程序中,可以用以下几种方法来获取命令行参数。
为方便说明,我们假设执行了命令:C:/test/app.exe -1 -2
::GetCommandLine();
for (int i=0;i<__argc;i++)
{
__targv[i];
//将依次得到C:\test\app.exe -1 -2
}
AfxGetApp()->m_lpCmdLine;
标签:
原文地址:http://www.cnblogs.com/huhu0013/p/4484844.html