hash_map::rend

说明说明

此 API 已过时。另一种方法是 unordered_map Class

返回解决成功最后一个元素的位置已取消的 hash_map 的迭代器。

const_reverse_iterator rend( ) const; 
reverse_iterator rend( );

返回值

解决成功最后一个元素的位置已取消的 hash_map 的反向双向迭代器 (在前面 unreversed hash_map 的第一个元素) 的位置。

备注

结束时间 使用 hash_map,rend 使用具有是相反的 hash_map。

如果 rend 的返回值赋给 const_reverse_iterator,则不能修改 hash_map 对象。如果 rend 的返回值赋给 reverse_iterator,则可以修改 hash_map 对象。

rend 可用于测试对反向迭代器是否已到达其 hash_map 的末尾。

不应取消引用 rend 返回的值。

在 Visual C++ .NET 2003 中,<hash_map><hash_set> 标头文件的成员中不再标准,命名空间,而是将 stdext 命名空间。有关更多信息,请参见 stdext 命名空间

示例

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

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_map <int, int> hm1;

   hash_map <int, int> :: iterator hm1_Iter;
   hash_map <int, int> :: reverse_iterator hm1_rIter;
   hash_map <int, int> :: const_reverse_iterator hm1_crIter;
   typedef pair <int, int> Int_Pair;

   hm1.insert ( Int_Pair ( 1, 10 ) );
   hm1.insert ( Int_Pair ( 2, 20 ) );
   hm1.insert ( Int_Pair ( 3, 30 ) );

   hm1_rIter = hm1.rend( );
   hm1_rIter--;
   cout << "The last element of the reversed hash_map hm1 is "
        << hm1_rIter -> first << "." << endl;

   // begin can be used to start an iteration 
   // through a hash_map in a forward order
   cout << "The hash_map is: ";
   for ( hm1_Iter = hm1.begin( ) ; hm1_Iter != hm1.end( );
   hm1_Iter++)
      cout << hm1_Iter -> first << " ";
      cout << "." << endl;

   // rbegin can be used to start an iteration 
   // through a hash_map in a reverse order
   cout << "The reversed hash_map is: ";
   for ( hm1_rIter = hm1.rbegin( ) ; hm1_rIter != hm1.rend( );
      hm1_rIter++)
      cout << hm1_rIter -> first << " ";
      cout << "." << endl;

   // A hash_map element can be erased by dereferencing to its key 
   hm1_rIter = --hm1.rend( );
   hm1.erase ( hm1_rIter -> first );

   hm1_rIter = hm1.rend( );
   hm1_rIter--;
   cout << "After the erasure, the last element "
        << "in the reversed hash_map is "
        << hm1_rIter -> first << "." << endl;
}
  
  
  
  

要求

标头: <hash_map>

命名空间: stdext

请参见

参考

hash_map Class

标准模板库