hash_multimap::crbegin
[!メモ]
この API は、互換性のために残されています。代わりに unordered_multimap クラスです。
逆順のhash_multimapの最初の要素を指す定数反復子を返します。
const_reverse_iterator crbegin( ) const;
戻り値
逆順の hash_multimap Class の最初の要素に対応したり、通常の hash_multimap最後の要素では、指す定数の順序の双方向反復子。
解説
crbegin は逆順のhash_multimapと hash_multimap::begin が hash_multimapで使用するように使用されます。
crbegin の戻り値で hash_multimap オブジェクトを変更することはできません。
hash_multimap によって逆方向の反復処理にcrbegin を使用できます。
Visual C++ .NET 2003では、<hash_map> と <hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。
使用例
// hash_multimap_crbegin.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.crbegin( );
cout << "The first element of the reversed hash_multimap hm1 is "
<< hm1_crIter -> first << "." << endl;
}
必要条件
ヘッダー: <hash_map>
名前空間: のstdext