Udostępnij za pośrednictwem


hash_set::Iterator (STL/CLR)

Typ iterację kontrolowanych sekwencji numerów.

    typedef T1 iterator;

Uwagi

Typ opisuje obiekt nieokreślonego typu T1 który może służyć jako iteratora dwukierunkowy kontrolowanych sekwencji numerów.

Przykład

// cliext_hash_set_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::iterator it = c1.begin(); 
    for (; it != c1.end(); ++it) 
        System::Console::Write(" {0}", *it); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Wymagania

Nagłówek: < cliext/hash_set >

Obszar nazw: cliext

Zobacz też

Informacje

hash_set (STL/CLR)

hash_set::const_iterator (STL/CLR)