我试图从配置文件中读取数组,但它会显示消息:"在选项' PARAM_ARRAY':无效选项值"。
topic对我没有帮助,因为它从命令行读取数组。
代码(只有重要的行)是这样的:
typedef boost::numeric::ublas::bounded_vector<double,6> vec6;
po::options_description parameters("Options");
parameters.add_options()
("PARAM_ARRAY", po::value< vec6 >(&configParameters.PARAM_ARRAY), "parameters array comment")
;
然后我也有这样的行:
po::options_description config_file_options;
config_file_options.add(parameters);
// Parser the command line options
po::variables_map vm;
po::store(po::command_line_parser(ac, av).
options(cmdline_options).run(), vm);
po::notify(vm);
// Verify if a config file was passed as an option
if (vm.count("config")) {
const std::vector<std::string> &config_files = vm["config"].as< std::vector<std::string> >();
for(std::vector<std::string>::const_iterator it = config_files.begin();
it != config_files.end(); ++it) {
ifstream ifs(it->c_str());
if (!ifs)
{
cout << "can not open config file: " << *it << "\n";
exit(1);
}
// Parse the options on the config file.
// NOTE: They are not going to be updated if they were already set by the command line option
po::store(parse_config_file(ifs, config_file_options), vm);
po::notify(vm);
}
}
最后,我的配置文件(.yaml)具有: PARAM_ARRAY =(0,0,0,0,0,0)
我也尝试过: PARAM_ARRAY = {0,0,0,0,0,0}和许多其他格式。
答案 0 :(得分:0)
我已经解决了这个问题。每个数字之间有一点烦人的空白,“{}”应该是“()”,我错过了数组PARAM_ARRAY的大小指示。
我有:
PARAM_ARRAY= {0, 0, 0, 0, 0, 0}
但配置文件应该是:
PARAM_ARRAY=[6](0,0,0,0,0,0)
无论如何,谢谢你,希望这将有助于将来。