unordered_set::const_iterator
受控序列的常量迭代器的类型。
typedef T1 const_iterator;
备注
描述类型可以作为常数的前向迭代数。为控制序列的对象。 它介绍此处,实现定义类型 T1的同义词。
示例
// std_tr1__unordered_set__unordered_set_const_iterator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
c1.insert('a');
c1.insert('b');
c1.insert('c');
// display contents " [c] [b] [a]"
for (Myset::const_iterator it = c1.begin();
it != c1.end(); ++it)
std::cout << " [" << *it << "]";
std::cout << std::endl;
return (0);
}
要求
标头: <unordered_set>
命名空间: std
请参见
参考
unordered_set::const_local_iterator