我有以下模板类。
template <typename _Type, typename _Comparator = equal_to<_Type> >
class CSearch
{
...
};
它应该存储STL的东西,如list,set或string。 我将所有元素(例如字符串)存储在私有类成员中:
map<int,_Type> seqs;
现在我想使用迭代器,但是&lt; _Type&gt; :: const_iterator存在问题。
template <typename _Type, typename _Comparator>
void CSearch<_Type,_Comparator>::Foo1(int id, const _Type & needle)
{
seqs.insert(make_pair(id,needle));
for(_Type::const_iterator it=seqs[0].begin();it!=seqs[0].end();it++)
cout<<*it<<" ";
cout<<endl;
}
或类似地
for(map<int,_Type>::const_iterator it=seqs.begin();it!=seqs.end();it++)
cout<<*it<<" ";
答案 0 :(得分:1)
<_Type>::const_iterator
是一种依赖类型。
请改为typename <_Type>::const_iterator
。