受控序列的常量迭代器的类型。
typedef T2 const_iterator;
备注
该类型描述了未指定类型 T2 的一个对象,该类型可以作为控制序列的常数双向迭代数。
示例
// cliext_hash_set_const_iterator.cpp
// compile with: /clr
#include <cliext/hash_set>
typedef cliext::hash_set<wchar_t> Myhash_set;
int main()
{
Myhash_set c1;
c1.insert(L'a');
c1.insert(L'b');
c1.insert(L'c');
// display contents " a b c"
Myhash_set::const_iterator cit = c1.begin();
for (; cit != c1.end(); ++cit)
System::Console::Write(" {0}", *cit);
System::Console::WriteLine();
return (0);
}
要求
标头: <cliext/hash_set>
命名空间: cliext