unordered_map::max_size
被制御シーケンスの最大サイズを取得します。
size_type max_size() const;
解説
このメンバー関数は、オブジェクトが制御できる最長のシーケンスの長さを返します。
使用例
// std_tr1__unordered_map__unordered_map_max_size.cpp
// compile with: /EHsc
#include <unordered_map>
#include <iostream>
typedef std::unordered_map<char, int> Mymap;
int main()
{
Mymap c1;
std::cout << "max_size() == " << c1.max_size() << std::endl;
return (0);
}
必要条件
ヘッダー : <unordered_map>
名前空間: std