我想知道如何在c ++控制台应用程序中使用自定义参数来运行分部代码
和多个参数。
myapp.exe -test
#include "stdafx.h"
#include <conio.h>
#include <iostream>
#include <windows.h>
using namespace std;
int main(array<System::String ^> ^args)
{
}
答案 0 :(得分:0)
我的意思是,您当然可以编写或拥有cli参数解析器,或使用类似boost program options,cxxopts,args或qt5 cli parser的东西。