次の方法で共有


hash_multimap::cend

[!メモ]

この API は、互換性のために残されています。代わりに unordered_multimap クラスです。

hash_multimapに最後の要素の次の場所を指す定数反復子を返します。

const_iterator cend( ) const;

戻り値

hash_multimap Classに最後の要素の次の場所を指す定数の双方向反復子。hash_multimap が空の場合、hash_multimap::cend == hash_multimap::begin。

解説

反復子がhash_multimapの末尾に到達したかどうかをテストするためにcend が使用されます。

cend によって返された値は逆参照しないでください。

Visual C++ .NET 2003では、<hash_map><hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。

使用例

// hash_multimap_cend.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_iterator hm1_cIter;
   typedef pair <int, int> Int_Pair;

   hm1.insert ( Int_Pair ( 3, 30 ) );

   hm1_cIter = hm1.cend( );
   hm1_cIter--;
   cout << "The value of last element of hm1 is " 
        << hm1_cIter -> second << "." << endl;
   }
  

必要条件

ヘッダー: <hash_map>

名前空間: のstdext

参照

関連項目

hash_multimap Class

標準テンプレート ライブラリ