#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.
有更多经验丰富的模板可以提供建议吗?研究自己的问题或关键短语?这让我陷入困境。
答案 0 :(得分:3)
由于get
是一个功能模板且output
的类型取决于模板参数InputIterator
,因此您需要使用template
关键字:
output->template get<1>();
Comeau C++ Template FAQ很好地描述了为什么这是必要的。