unordered_multiset::get_allocator
格納されているアロケーター オブジェクトを取得します。
Alloc get_allocator() const;
解説
このメンバー関数は、格納されているアロケーター オブジェクトを返します。
使用例
// std_tr1__unordered_set__unordered_multiset_get_allocator.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_multiset<char> Myset;
typedef std::allocator<std::pair<const char, int> > Myalloc;
int main()
{
Myset c1;
Myset::allocator_type al = c1.get_allocator();
std::cout << "al == std::allocator() is "
<< std::boolalpha << (al == Myalloc()) << std::endl;
return (0);
}
必要条件
ヘッダー : <unordered_set>
名前空間: std