本文转自:
http://blog.csdn.net/bao_qibiao/article/details/4528860
在MFC程序中,可以用以下几种方法来获取命令行参数。
为方便说明,我们假设执行了命令:C:/test/app.exe -1 -2
方法一
1 ::GetCommandLine ();
2 //将获取到 "C:/test/app.exe" -1 -2
方法二
1 for (int i=0;i<__argc ;i++)
2 {
3 __argv [i];
4 //将依次得到C:/test/app.exe -1 -2
5 }
方法三
1 AfxGetApp ()->m_lpCmdLine;
2 //将获取到 -1 -2
posted on 2012-04-12 12:26
王海光 阅读(626)
评论(0) 编辑 收藏 引用 所属分类:
MFC