boost::program_options 仅允许 `--option=arg` 参数样式

发布于 2024-11-25 10:28:42 字数 687 浏览 2 评论 0原文

使用 boost::program_options,我只想允许参数的 --option=arg 样式,并禁止空格分隔的 --option arg ,这在参数时有时是不明确的是可选的。

看起来有点可能。查看 cmdline.hpp 源(发现没有文档),我尝试使用受限选项样式,仅包括 allow_longlong_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文