다음을 통해 공유


hash_multimap::end (STL/CLR)

제어되는 시퀀스의 끝을 지정합니다.

    iterator end();

설명

멤버 함수는 제어 되는 시퀀스의 끝 바로 뒤를 가리키는 양방향 반복기를 반환합니다.이 제어 되는 시퀀스의 끝을 지정 하는 반복기를 가져올 수 있습니다. 그 상황에서는 제어 되는 시퀀스의 길이가 변경 되 면 변경 됩니다.

예제

// cliext_hash_multimap_end.cpp 
// compile with: /clr 
#include <cliext/hash_map> 
 
typedef cliext::hash_multimap<wchar_t, int> Myhash_multimap; 
int main() 
    { 
    Myhash_multimap c1; 
    c1.insert(Myhash_multimap::make_value(L'a', 1)); 
    c1.insert(Myhash_multimap::make_value(L'b', 2)); 
    c1.insert(Myhash_multimap::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Myhash_multimap::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// inspect last two items 
    Myhash_multimap::iterator it = c1.end(); 
    --it; 
    --it; 
    System::Console::WriteLine("*-- --end() = [{0} {1}]", 
        it->first, it->second); 
    ++it; 
    System::Console::WriteLine("*--end() = [{0} {1}]", 
        it->first, it->second); 
    return (0); 
    } 
 
  

요구 사항

헤더: < cliext/hash_map >

네임 스페이스: cliext

참고 항목

참조

hash_multimap (STL/CLR)

hash_multimap::begin (STL/CLR)