共用方式為


hash_multimap::crend

注意事項注意事項

這個 API 已經過時。替代案例是 unordered_multimap 類別

傳回處理成功最後一個項目的位置會反轉 hash_multimap 常數 Iterator。

const_reverse_iterator crend( ) const; 

傳回值

處理成功最後一個項目的位置會反轉 hash_multimap 類別 的常數反向雙向 Iterator (在 unreversed hash_multimap的第一個項目之前) 的位置。

備註

如同 hash_multimap::end 搭配 hash_multimap,crend 以相反的 hash_multimap。

傳回 crend值,不能修改 hash_multimap 物件。

crend 可用來測試是否反向 Iterator 是否已到達其 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

請參閱

參考

hash_multimap 類別

標準樣板程式庫