MFC获取参数的几种方法

在MFC程序中,可以用以下几种方法来获取命令行参数。
为方便说明,我们假设执行了命令:C:/test/app.exe -1 -2

方法一
::GetCommandLine();
将获取到"C:/test/app.exe" -1 -2

方法二
for(inti=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

http://qingfengju.com/article.asp?id=92

你可能感兴趣的:(mfc)