在MFC程序中,可以用以下几种方法来获取命令行参数。
为方便说明,我们假设执行了命令:C:\test\app.exe -1 -2
方法一
::GetCommandLine();
将获取到 "C:\test\app.exe" -1 -2
方法二
for (int i=0;i<__argc;i++)
{
__argv[i]; 将依次得到C:\test\app.exe -1 -2
}
方法三 AfxGetApp()->m_lpCmdLine;
将获取到 -1 -2
其他方法
如果希望支持MFC应用程序的标准命令行,还可以使用MFC中的CCommandLineInfo类。
相关文章:http://blog.csdn.net/geeeeeeee/archive/2008/12/13/3510195.aspx
转载请注明:exchen's blog » MFC 获取命令行参数