跳过未知选项而不抛出 boost 程序选项
这些天我正在使用 Boost 程序选项来读取 INI 文件。
一旦文件中存在带有未知选项的行,我的代码就会引发异常。 您知道是否可能以及如何让下面的代码读取整个文件?我想跳过未知选项而不抛出,以便我可以读取所有可能的值。 多谢 AFG
namespace pod = boost::program_options;
pod::options_description options("Options");
std::string myArgValue;
options.add_options()
("SECT_A.Option_A",
pod::value<int>()->default_value(1),
"xxx")
("SECT_B.Option_B",
pod::value<std::string>(&myArgValue),
"xxx")
;
pod::variables_map vm;
pod::store( pod::parse_config_file( s, options ) , vm);
pod::notify( vm );
These days I am playing with Boost program options for reading INI files.
The code I have throws an exception once in the file there is a line with an unknown option.
Do you know whether is possible and how to let the code below read the whole file? I want to skip the unknown options without throwing so that I can read all possible values.
Thanks a lot
AFG
namespace pod = boost::program_options;
pod::options_description options("Options");
std::string myArgValue;
options.add_options()
("SECT_A.Option_A",
pod::value<int>()->default_value(1),
"xxx")
("SECT_B.Option_B",
pod::value<std::string>(&myArgValue),
"xxx")
;
pod::variables_map vm;
pod::store( pod::parse_config_file( s, options ) , vm);
pod::notify( vm );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
叶:
allow_unregistered()
,看看:Yip:
allow_unregistered()
, have a look at:http://www.boost.org/doc/libs/1_45_0/doc/html/program_options/howto.html#id2075177