【发布时间】:2018-11-28 12:27:15
【问题描述】:
我想使用 boost::program_options 从配置文件中读取选项,允许不区分大小写的解析。
考虑一下,例如,下面的简单代码:
#include <iostream>
#include <fstream>
#include <string>
#include <boost/program_options/options_description.hpp>
#include <boost/program_options/parsers.hpp>
#include <boost/program_options/variables_map.hpp>
int main()
{
using namespace std;
namespace po = boost::program_options;
ifstream inputfile("input.dat");
po::options_description desc("");
desc.add_options()
("l", po::value<unsigned int>())
;
po::variables_map vm;
po::store(po::parse_config_file(inputfile, desc), vm);
po::notify(vm);
if (vm.count("l"))
cout << "l is set as " << vm["l"].as<unsigned int>() << endl;
else
cout << "l is not set";
return 0;
}
带有以下input.dat文件
l=3
程序运行良好并给出输出
l is set as 3
如果我将input.dat 更改为
L=3
程序终止引发异常
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::program_options::unknown_option> >'
what(): unrecognised option 'L'
Aborted
在命令行上显然可以进行不区分大小写的解析,请参阅here 的讨论。 是否也可以进行不区分大小写的解析以从配置文件中读取?
【问题讨论】:
标签: c++ boost boost-program-options