1

我写了这个快速函数来熟悉boost::program_options. 请注意,这po是一个命名空间别名,定义如下: namespace po = boost::program_options.

int application(po::variables_map* vm)
{
    std::cout << vm << std::endl;
    std::cout << *vm["infile"].value();
    // also tried:  std::cout << *vm["infile"]

    return SUCCESS;
}  //application

当我注释掉函数体中的第二行时,应用程序成功编译并打印vm. 但是,当我尝试使用此处出现的函数进行编译时,我得到以下编译器侮辱:

invalid types ‘boost::program_options::variables_map*[const char [7]]’ for array subscript

我应该注意用 return 替换第二std::cout << vm->count("infile")1

我做错了什么?我是在滥用增强构造还是在(取消)引用中混淆了vm

更新

按照我通过引用传递以避免运算符优先级问题的建议,我重写了我的函数:

int application(po::variables_map& vm)
{
    std::cout << &vm << std::endl;
    std::cout << vm["infile"].value();

    return SUCCESS;
}  //application

我现在得到一个不同的错误:

no match for ‘operator<<’ (operand types are ‘std::ostream {aka std::basic_ostream<char>}’ and ‘const boost::program_options::variable_value’)

我在这里做错了什么?

编辑:我很高兴被告知为什么我的问题被否决了。是不是太基础了?

4

1 回答 1

6

运算符的[]优先级高于一元运算*符。因此,*vm["infile"]与 相同*(vm["infile"]),但您想要(*vm)["infile"]

于 2013-05-18T18:01:25.930 回答