这是我的代码:
#include <iostream>
#include <string>
#include "boost/program_options.hpp"
namespace po = boost::program_options;
int main(int argc, char *argv[]) {
po::options_description cli_opts_desc("General flags");
cli_opts_desc.add_options()
("help,h", po::value<std::string>()->default_value("all"), "Show this help message.")
;
po::variables_map flags;
po::store(po::parse_command_line(argc, argv, cli_opts_desc), flags);
if (flags.count("help")) {
std::cout << "flags['help'] is " << flags["help"].as<std::string>() << std::endl;
if (flags["help"].as<std::string>() != "all") std::cout << "specific description for "
<< flags["help"].as<std::string>() << std::endl;//todo
else std::cout << cli_opts_desc << std::endl;
} else {
std::cout << "no --help provided" << std::endl;
}
}
或者更确切地说,是它的简化版本。我跑的时候
./test
按预期显示帮助消息。但是,如果我跑
./test --help #or
./test -h
然后它会抛出一个错误:
terminate called after throwing an instance of 'boost::exception_detail::clone_impl<boost::exception_detail::error_info_injector<boost::program_options::invalid_command_line_syntax> >'
what(): the required argument for option '--help' is missing
Aborted
即使我声明默认值,我也不明白为什么会发生这种情况。
导致此错误的原因是什么?我该如何解决?
注意:如果可能的话,我想避免使用implicit_value
;在现实世界中,这并不局限于我的--help
,并且能够指定短选项的参数,并且两者之间有空格,这是一个避免愚蠢错误的好东西。
答案 0 :(得分:1)
尝试一下:
("help,h", "Show this help message.")
没有参数,但是在没有提供参数的情况下也没有抱怨。