다음을 통해 공유


hash_map::erase

[!참고]

이 API는 사용되지 않습니다.대신 unordered_map Class.

요소 또는 요소의 범위는 지정 된 위치에서 hash_map에 제거 하거나 지정 된 키와 일치 하는 요소를 제거 합니다.

iterator erase(
   iterator _Where
);
iterator erase(
   iterator _First,
   iterator _Last
);
size_type erase(
   const key_type& _Key
);

매개 변수

  • _Where
    Hash_map에서 제거할 요소의 위치입니다.

  • _First
    Hash_map을 제거 하는 첫 번째 요소의 위치입니다.

  • _Last
    마지막 요소 바로 뒤 위치에서 hash_map을 제거 했습니다.

  • _Key
    Hash_map에서 제거할 요소의 키 값입니다.

반환 값

첫 번째 두 명의 멤버 함수에 대 한 양방향 반복기는 이러한 요소가 있으면 모든 요소 제거 또는 포인터 hash_map의 끝 넘어 남은 첫 번째 요소를 지정 됩니다.

세 번째에 대 한 멤버 함수 hash_map에서 제거 된 요소 수를 반환 합니다.

설명

멤버 함수가 예외를 throw 하지 않습니다.

Visual C++.NET 2003 멤버는 <hash_map><hash_set> 헤더 파일이 더 이상 std 네임 스페이스에 있지만 오히려 stdext 네임 스페이스로 이동 되었습니다.자세한 내용은 stdext 네임스페이스를 참조하십시오.

예제

이 예제를 컴파일하는 경우의 /Wp64 플래그 또는 컴파일러 경고 c 4267은 64 비트 플랫폼에서 생성 됩니다.이 경고에 대 한 내용은 컴파일러 경고 (수준 3) C4267.

// hash_map_erase.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>

int main()
{
    using namespace std;
    using namespace stdext;
    hash_map<int, int> hm1, hm2, hm3;
    hash_map<int, int> :: iterator pIter, Iter1, Iter2;
    int i;
    hash_map<int, int>::size_type n;
    typedef pair<int, int> Int_Pair;

    for (i = 1; i < 5; i++)
    {
        hm1.insert(Int_Pair (i, i));
        hm2.insert(Int_Pair (i, i*i));
        hm3.insert(Int_Pair (i, i-1));
    }

    // The 1st member function removes an element at a given position
    Iter1 = ++hm1.begin();
    hm1.erase(Iter1);

    cout << "After the 2nd element is deleted, the hash_map hm1 is:";
    for (pIter = hm1.begin(); pIter != hm1.end(); pIter++)
        cout << " " << pIter -> second;
    cout << "." << endl;

    // The 2nd member function removes elements
    // in the range [_First, _Last)
    Iter1 = ++hm2.begin();
    Iter2 = --hm2.end();
    hm2.erase(Iter1, Iter2);

    cout << "After the middle two elements are deleted, "
         << "the hash_map hm2 is:";
    for (pIter = hm2.begin(); pIter != hm2.end(); pIter++)
        cout << " " << pIter -> second;
    cout << "." << endl;

    // The 3rd member function removes elements with a given _Key
    n = hm3.erase(2);

    cout << "After the element with a key of 2 is deleted,\n"
         << "the hash_map hm3 is:";
    for (pIter = hm3.begin(); pIter != hm3.end(); pIter++)
        cout << " " << pIter -> second;
    cout << "." << endl;

    // The 3rd member function returns the number of elements removed
    cout << "The number of elements removed from hm3 is: "
         << n << "." << endl;

    // The dereferenced iterator can also be used to specify a key
    Iter1 = ++hm3.begin();
    hm3.erase(Iter1);

    cout << "After another element with a key equal to that"
         << endl;
    cout  << "of the 2nd element is deleted, "
          << "the hash_map hm3 is:";
    for (pIter = hm3.begin(); pIter != hm3.end(); pIter++)
        cout << " " << pIter -> second;
    cout << "." << endl;
}
  
  
  
  
  

요구 사항

헤더: <hash_map>

네임 스페이스: stdext

참고 항목

참조

hash_map Class

표준 템플릿 라이브러리