3

我有以下程序:

#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 --hor ./myprg --heor ,我也会得到相同的结果./myprg --hel。那些最后的选项不应该引发错误吗?

4

1 回答 1

5

似乎接受部分匹配是default_stylefor boost::option

根据 Boost 网站http://lists.boost.org/boost-users/2007/02/25861.php的回答

通过将额外参数传递给parse_command_line.

由 OP 编辑​​:实际上,parse_command_line我不得不使用更通用的command_line_parser(允许更改样式),因此用store(...这个替换该行:

store(command_line_parser(argc, argv).options(cmd_line).style(command_line_style::default_style & ~command_line_style::allow_guessing).run(), vm);
于 2012-04-17T11:04:55.000 回答