我正在使用program_options来解析命令行和配置选项,但发现似乎是一个错误。使用具有相似名称的 vector 选项时,会出现问题。如果我有一个未指定的参数“myParam”,而另一个指定了参数“myParam2”,则库会将myParam的值附加到myParam2。
例如,当我这样调用程序时:
./model -myParam2={7,8,9} -myParam={5,6}
我得到:
myParam not declared <-- This is OK
myParam2 size: 5 <-- I would expect this to be size:3
我将代码简化为以下显示问题的示例:
// Declare a group of options that will be allowed both on command line and in config file
po::options_description options("Simulator Configuration (and Command Line) options");
options.add_options()
//("myParam", po::value<std::vector<int>>(), "test") --> If I uncomment this line, it works as expected
("myParam2", po::value<std::vector<int>>(), "test");
// parse the cmdline options
auto parsed_cmdLine_options = po::command_line_parser(ac,av).options(options)
.style(po::command_line_style::unix_style | po::command_line_style::allow_long_disguise) // to enable options to start with a '-' instead of '--'
.allow_unregistered() // to allow generic parameters (which can be read by models)
.run();
po::store(parsed_cmdLine_options, simulatorParams);
notify(simulatorParams);
// print parsed options
std::vector<int> tmp1, tmp2;
if(simulatorParams.count("myParam")){
tmp1 = simulatorParams["myParam"].as<std::vector<int>>();
std::cout << "myParam size: " << tmp1.size() << "\n";
if(tmp1.size()!= 2){
throw "Wrong Size";
}
}else
{
std::cout << "myParam not declared \n";
}
if(simulatorParams.count("myParam2")){
tmp2 = simulatorParams["myParam2"].as<std::vector<int>>();
std::cout << "myParam2 size: " << tmp2.size() << "\n";
if(tmp2.size()!= 3){
throw "Wrong Size";
}
}
如果我取消对注册“myParam”的行的注释,则所有操作均按预期进行:
options.add_options()
("myParam", po::value<std::vector<int>>(), "test")
("myParam2", po::value<std::vector<int>>(), "test");
它打印:
myParam size: 2
myParam2 size: 3
我确实需要使用未注册的选项,因为稍后在执行过程中会对其进行重新处理。
这似乎是一个非常简单的错误,所以也许我在某种程度上使用了库。
是否有人之前曾见过此问题,或有任何解决办法的想法?
非常感谢你!
编辑:
我正在使用Boost 1.48。
我为参数尝试了其他几种语法,其行为方式相同:
带有双“-”的
最佳答案
这是一个功能。请参阅命令行样式选项: