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

发布于 2024-09-10 16:28:38 字数 776 浏览 5 评论 0原文

#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.

能否有对模板更有经验的人提供建议?自己研究的问题或关键词?这让我陷入困境。

#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>();
    }
}

I'm getting libraries with this template function. Gcc 4.1.2 (codepad.org) reports the following error:

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

Could someone more experienced with templates offer advice? Either the problem or key phrases to research myself? This has me stuck.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

2024-09-17 16:28:39

由于 get 是一个函数模板,并且 output 的类型取决于模板参数 InputIterator,因此您需要使用 template< /code> 关键字:

output->template get<1>();

Comeau C++ 模板常见问题解答 很好地描述了为什么会出现这种情况是必要的。

Because get is a function template and the type of output is dependent upon the template parameter InputIterator, you need to use the template keyword:

output->template get<1>();

The Comeau C++ Template FAQ has a good description of why this is necessary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文