다음을 통해 공유


hash_map::operator (STL/CLR)

연결 된 매핑된 값에 키를 매핑합니다.

    mapped_type operator[](key_type key);

매개 변수


  • 검색할 키 값입니다.

설명

요소에 해당 하는 순서를 찾으려면 노력 멤버 함수 key.이 발견 되 면 관련된 매핑된 값을 반환 합니다. 그렇지 않으면 삽입 value_type(key, mapped_type()) 및 반환 연결 된 (기본) 매핑 값입니다.해당 키를 지정 하는 매핑된 값을 조회 하거나 유효한 미디어가 없는 경우 항목의 키를 있는지 확인 하십시오 사용 하 여.

예제

// cliext_hash_map_operator_sub.cpp 
// compile with: /clr 
#include <cliext/hash_map> 
 
typedef cliext::hash_map<wchar_t, int> Myhash_map; 
int main() 
    { 
    Myhash_map c1; 
    c1.insert(Myhash_map::make_value(L'a', 1)); 
    c1.insert(Myhash_map::make_value(L'b', 2)); 
    c1.insert(Myhash_map::make_value(L'c', 3)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("c1[{0}] = {1}", 
        L'A', c1[L'A']); 
    System::Console::WriteLine("c1[{0}] = {1}", 
        L'b', c1[L'b']); 
 
// redisplay altered contents 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// alter mapped values and redisplay 
    c1[L'A'] = 10; 
    c1[L'c'] = 13; 
    for each (Myhash_map::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

요구 사항

헤더: < cliext/hash_map >

네임 스페이스: cliext

참고 항목

참조

hash_map (STL/CLR)

hash_map::find (STL/CLR)

hash_map::insert (STL/CLR)