hash_set::const_iterator (STL/CLR)
用於受控制序列的常數迭代器類型。
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