-1

我有以下模板类。

template <typename _Type, typename _Comparator = equal_to<_Type> >
class CSearch
{
...
};

它应该存储 STL 的东西,如列表、集合或字符串。我将所有元素(例如字符串)存储在私有类成员中:

map<int,_Type> seqs;

现在我想使用迭代器,但是 <_Type>::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<<" ";
4

1 回答 1

1

<_Type>::const_iterator是依赖类型。

而是将其称为typename <_Type>::const_iterator

于 2013-04-10T11:15:53.263 回答