次の方法で共有


hash_map::cend

[!メモ]

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

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

const_iterator cend( ) const;

戻り値

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

解説

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

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

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

使用例

// hash_map_cend.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> :: 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_map Class

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