我有以下程序:
#include <boost/program_options.hpp>
bool check_options(int argc, char** argv)
{
using namespace boost::program_options;
variables_map vm;
// Command line options
std::string cfg_file_name;
options_description cmd_line("Allowed options");
cmd_line.add_options()
("help", "produce this help message")
;
store(parse_command_line(argc, argv, cmd_line), vm);
notify(vm);
if(vm.count("help"))
{
std::cout << cmd_line << std::endl;
return false;
}
return true;
}
int main(int argc, char** argv)
{
if(!check_options(argc, argv))
return 1;
return 0;
}
当我运行它时,./myprg --help
我得到了我期望的结果:
Allowed options:
--help produce this help message
但是,即使我运行:./myprg --h
or ./myprg --he
or ,我也会得到相同的结果./myprg --hel
。那些最后的选项不应该引发错误吗?