C ++控制台应用程序中的自定义参数

时间:2019-09-20 10:41:46

标签: c++-cli console-application

我想知道如何在c ++控制台应用程序中使用自定义参数来运行分部代码

和多个参数。

  

myapp.exe -test

#include "stdafx.h"
#include <conio.h>
#include <iostream>
#include <windows.h>

using namespace std;


int main(array<System::String ^> ^args)
{

}

1 个答案:

答案 0 :(得分:0)

我的意思是,您当然可以编写或拥有cli参数解析器,或使用类似boost program optionscxxoptsargsqt5 cli parser的东西。