hash_map::max_size
[!メモ]
この API は、互換性のために残されています。代わりに unordered_map クラスです。
hash_mapの最大長を返します。
size_type max_size( ) const;
戻り値
hash_mapの最大許容長。
解説
Visual C++ .NET 2003では、<hash_map> と <hash_set> ヘッダー ファイルのメンバーはstdの名前空間に存在しなくなりましたが、ではなくstdextの名前空間に型。詳細については、「The stdext Namespace」を参照してください。
使用例
// hash_map_max_size.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> :: size_type i;
i = hm1.max_size( );
cout << "The maximum possible length "
<< "of the hash_map is " << i << "."
<< endl << "(Magnitude is machine specific.)";
}
出力例
次の出力は、x86の場合です。
The maximum possible length of the hash_map is 536870911.
(Magnitude is machine specific.)
必要条件
ヘッダー: <hash_map>
名前空間: のstdext