hash_multimap::crbegin
참고
이 API는 사용되지 않습니다.unordered_multimap 클래스를 대신 사용하는 것이 좋습니다.
Returns a const iterator addressing the first element in a reversed hash_multimap.
const_reverse_iterator crbegin( ) const;
반환 값
A const reverse bidirectional iterator addressing the first element in a reversed hash_multimap 클래스 or addressing what had been the last element in the unreversed hash_multimap.
설명
crbegin is used with a reversed hash_multimap just as hash_multimap::begin is used with a hash_multimap.
With the return value of crbegin, the hash_multimap object cannot be modified.
crbegin can be used to iterate through a hash_multimap backwards.
Visual C++.NET 2003에서, <hash_map> 및 <hash_set> 헤더 파일의 멤버는 더 이상 std 네임스페이스에 존재하지 않습니다. 대신 stdext 네임스페이스로 이동되었습니다. 자세한 내용은 stdext 네임스페이스를 참조하십시오.
예제
// hash_multimap_crbegin.cpp
// compile with: /EHsc
#include <hash_multimap>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multimap <int, int> hm1;
hash_multimap <int, int> :: const_reverse_iterator hm1_crIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 3, 30 ) );
hm1_crIter = hm1.crbegin( );
cout << "The first element of the reversed hash_multimap hm1 is "
<< hm1_crIter -> first << "." << endl;
}
요구 사항
헤더: <hash_map>
네임스페이스: stdext