Boost.Program_Options:当<bool>被指定为命令行选项时,什么是有效的命令行参数?

Dan*_*aum 9 c++ boost boolean command-line-arguments boost-program-options

鉴于以下简单使用Boost.Program_Options:

boost::program_options::options_description options("Options");

options.add_options()

    ("my_bool_flag,b", boost::program_options::value<bool>(), "Sample boolean switch)")

    ;
Run Code Online (Sandbox Code Playgroud)

...什么命令行参数将评估false,以及什么true

(即,假设程序名为"foo",并在命令行上执行: foo -b ? ...带有问号的占位符,用于其他一些文本:所有可能正确评估的文本选项是false什么,以及什么true? )

小智 20

查看$(BOOST_ROOT)/libs/program_options/src/value_semantic.cpp,您可以找到:

/* Validates bool value.
    Any of "1", "true", "yes", "on" will be converted to "1".<br>
    Any of "0", "false", "no", "off" will be converted to "0".<br>
    Case is ignored. The 'xs' vector can either be empty, in which
    case the value is 'true', or can contain explicit value.
*/
BOOST_PROGRAM_OPTIONS_DECL void validate(any& v, const vector<string>& xs,
                   bool*, int)
{
    check_first_occurrence(v);
    string s(get_single_string(xs, true));

    for (size_t i = 0; i < s.size(); ++i)
        s[i] = char(tolower(s[i]));

    if (s.empty() || s == "on" || s == "yes" || s == "1" || s == "true")
        v = any(true);
    else if (s == "off" || s == "no" || s == "0" || s == "false")
        v = any(false);
    else
        boost::throw_exception(invalid_bool_value(s));
}
Run Code Online (Sandbox Code Playgroud)