我知道这是一个菜鸟问题。我从这里使用了这个示例代码。它应该如何工作?我以为你可以为谁输入一些东西,但它会立即关闭。
#include <iostream>
#include "getopt_pp_standalone.h"
using namespace GetOpt;
using namespace std;
int main(int argc, char* argv[])
{
string who;
GetOpt_pp ops(argc, argv);
ops >> Option('n', "name", who, "world" ); /* the default name is 'world' */
cout << "Hello " << who << "!" << endl;
return 0;
}