模板中依赖类型的问题

时间:2010-05-28 17:55:25

标签: c++ templates syntax stl

我遇到模板和依赖类型的问题:

namespace Utils
{
    void PrintLine(const string& line, int tabLevel = 0);
    string getTabs(int tabLevel);

    template<class result_t, class Predicate>
    set<result_t> findAll_if(typename set<result_t>::iterator begin, set<result_t>::iterator end, Predicate pred) // warning C4346
    {
        set<result_t> result;
        return findAll_if_rec(begin, end, pred, result);
    }
}

namespace detail
{
    template<class result_t, class Predicate>
    set<result_t> findAll_if_rec(set<result_t>::iterator begin, set<result_t>::iterator end, Predicate pred, set<result_t> result)
    {
        typename set<result_t>::iterator nextResultElem = find_if(begin, end, pred);
        if (nextResultElem == end)
        {
            return result;
        }
        result.add(*nextResultElem);

        return findAll_if_rec(++nextResultElem, end, pred, result);
    }
}

编译器投诉,来自上述位置:

warning C4346: 'std::set<result_t>::iterator' : dependent name is not a type. prefix with 'typename' to indicate a type
error C2061: syntax error : identifier 'iterator'

我做错了什么?

2 个答案:

答案 0 :(得分:31)

嗯,警告说:

  

依赖名称不是类型。带有'typename'的前缀表示类型

从属名称(即iterator中的std::set<result_t>::iterator)不是类型。您需要在其前面添加typename来表示类型:

typename std::set<result_t>::iterator

所以,你的声明应该是:

template<class result_t, class Predicate>
set<result_t> findAll_if(typename set<result_t>::iterator begin, typename set<result_t>::iterator end, Predicate pred)
                                                note added typename ^

(并且定义应与声明匹配)

答案 1 :(得分:5)

此行还需要一个额外的typename关键字:

set<result_t> findAll_if(typename set<result_t>::iterator begin,类型名称 set<result_t>::iterator end, Predicate pred) // warning C4346