MFC中获取命令行参数的几种方法

    1. 方法一
      ::GetCommandLine();
        将获取到 "C:\test\app.exe" -1 -2
    2. 方法二
      for (int i=0;i<__argc;i++)
      
      {
      
          __targv[i];
      
          //将依次得到C:\test\app.exe -1 -2
      
      }
    3. 方法三
      AfxGetApp()->m_lpCmdLine;
        将获取到 -1 -2
    4. 其他方法
        如果希望支持MFC应用程序的标准命令行,还可以使用MFC中的CCommandLineInfo类。

你可能感兴趣的:(mfc)