boost::program_options 仅允许 `--option=arg` 参数样式
使用 boost::program_options,我只想允许参数的 --option=arg
样式,并禁止空格分隔的 --option arg
,这在参数时有时是不明确的是可选的。
看起来有点可能。查看 cmdline.hpp 源(发现没有文档),我尝试使用受限选项样式,仅包括 allow_long
和 long_allow_adjacent
,并且没有 long_allow_next
:
int optStyle =
po::command_line_style::allow_long |
po::command_line_style::long_allow_adjacent;
po::command_line_parser parser(argc, argv);
parser.style(optStyle);
不幸的是--option arg
仍然被这个解析器接受......
也许是错误? (libboost_program_options-1_46.so.1.46.1)
Using boost::program_options, I'd like to allow only --option=arg
style for arguments and forbid the space separated --option arg
which is sometimes ambiguous when arguments are optional.
Looks kind of possible. Having a look at cmdline.hpp source (found no documentation), I tried to use a restricted option style including only allow_long
and long_allow_adjacent
, and without long_allow_next
:
int optStyle =
po::command_line_style::allow_long |
po::command_line_style::long_allow_adjacent;
po::command_line_parser parser(argc, argv);
parser.style(optStyle);
Unfortunately --option arg
are still accepted by this parser...
Bug maybe? (libboost_program_options-1_46.so.1.46.1)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论