备注
此 API 已过时。替代为 unordered_multimap 类。
返回最后一个元素成功解决的位置处于已撤消的 hash_multimap 的 const 迭代器。
const_reverse_iterator crend( ) const;
返回值
最后一个元素成功解决的位置反转的 hash_multimap 类 的 const 撤消双向迭代器 (在前面 unreversed hash_multimap的第一个元素) 的位置。
备注
hash_multimap::end 正使用 hash_multimap,crend 使用的反转 hash_multimap。
返回值 crend,不能修改 hash_multimap 对象。
crend 可用于测试对进行反向迭代器是否到达其 hash_multimap 的末尾。
不应取消crend 返回的值。
在Visual C++ .NET 2003中,成员<hash_map> 和 <hash_set> 头文件不再在std命名空间,而是已经进入了stdext命名空间。 有关更多信息,请参见 stdext 命名空间。
示例
// hash_multimap_crend.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.crend( );
hm1_crIter--;
cout << "The last element of the reversed hash_multimap hm1 is "
<< hm1_crIter -> first << "." << endl;
}
要求
标头: <hash_map>
**命名空间:**stdext