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