0

Boost Program Options ライブラリのチュートリアルのオプションの詳細セクションに従おうとしていますが、次のエラーが表示されます。

error C2679: "binary '<<' : no operator found which takes a right-hand operand
of type 'const std::vector<_Ty>'" (or there is no acceptable conversion)

私のコードは以下です。ヘッダーを含める必要があると思いますが、どれがわかりません。

#include <boost/program_options.hpp>
#include <iostream>
#include <vector>
#include <string>

using std::cout;
using std::endl;
using std::vector;
using std::string;

namespace po = boost::program_options;

int options_description(int ac, char* av[])
{
    int opt;
    po::options_description desc("Allowed options");
    desc.add_options()
        ("help", "produce help message")
        ("optimization", po::value<int>(&opt)->default_value(10), 
            "optimization level")
        ("include-path,I", po::value< vector<string> >(), "include path")
        ("input-file", po::value< vector<string> >(), "input file")
    ;

    po::positional_options_description p;
    p.add("input-file", -1);

    po::variables_map vm;
    po::store(po::command_line_parser(ac, av).
        options(desc).positional(p).run(), vm);
    po::notify(vm);

    if (vm.count("include-path"))
    {
        cout << "Include paths are: " 
             << vm["include-path"].as< vector<string> >() << "\n"; // Error
    }

    if (vm.count("input-file"))
    {
        cout << "Input files are: " 
             << vm["input-file"].as< vector<string> >() << "\n"; // Error
    }

    cout << "Optimization level is " << opt << "\n";   

    return 0;
}

int main(int argc, char *argv[])
{
    return options_description(argc, argv);
}
4

1 に答える 1

0

厳密には私の質問への回答ではありません (これを行う標準ライブラリ機能が望ましいです) が、オブジェクトを受け入れるクラスに<<演算子を実装するクラスを提供する回答を持つ同様の質問を見つけました:ostreamvector

template<class T>
std::ostream& operator <<(std::ostream& os, const std::vector<T>& v)
{
    std::copy(v.begin(), v.end(), std::ostream_iterator<T>(std::cout, " ")); 
    return os;
}

これをコードに追加したところ、コンパイルされるようになりました。残念ながら、これはチュートリアルで言及されていませんでした。

ソース:ブースト ライブラリを使用したベクトル文字列 C++ でエラーが発生する

于 2012-12-12T14:09:59.630 に答える