模板函数出错(使用Boost.Tuples)

时间:2010-07-22 19:44:52

标签: c++ templates boost function-templates boost-tuples

#include <list>
#include <boost/tuple/tuple.hpp>

template<class InputIterator>
void f(InputIterator it)
{
    typedef boost::tuple<typename InputIterator::value_type, int> Pair;
    std::list<Pair> paired;
    typename std::list<Pair>::const_iterator output;
    for(output=paired.begin(); output!=paired.end(); ++output)
    {
        output->get<1>();
    }
}

我正在使用此模板函数获取库。 Gcc 4.1.2(codepad.org)报告以下错误:

In function 'void f(InputIterator)':
Line 12: error: expected primary-expression before ')' token
compilation terminated due to -Wfatal-errors.

有更多经验丰富的模板可以提供建议吗?研究自己的问题或关键短语?这让我陷入困境。

1 个答案:

答案 0 :(得分:3)

由于get是一个功能模板且output的类型取决于模板参数InputIterator,因此您需要使用template关键字:

output->template get<1>();

Comeau C++ Template FAQ很好地描述了为什么这是必要的。