1

我尝试使用 program_options 来解析配置文件。我的一些输入是大浮点数。例如,

[测试部分]

测试 = 1e23

但使用

po::options_description desc("");
desc.add_options()("test_section.test",po::value<double(),"Test");
po::variables_map vm;
vm = po::variables_map();

std::ifstream settings_file( input_filename,std::ifstream::in );

po::store( po::parse_config_file( settings_file , desc, true ), vm );
settings_file.close();
po::notify( vm );

double test = vm["test_section.test"].as<double>();

产生一个错误的转换错误。我应该如何解决这个问题?我可以以某种方式定义浮点数的格式吗?

4

0 回答 0