C++ STL中的multiset::get_allocator()方法是C++ STL中的内置函数,该函数返回与多集相关联的分配器对象的副本。
用法:
multiset_name.get_allocator()
其中allocator_type是容器使用的分配器的类型。
参数:该函数不带任何参数。
返回值:此方法返回用于构造容器的分配器对象。
以下示例程序旨在说明multiset::get_allocator()函数:
程序1:
// CPP code to illustrate multiset::get_allocator
#include <iostream>
#include <set>
using namespace std;
int main()
{
multiset<int> mymultiset;
int* p;
unsigned int i;
// allocate an array of 5 elements
// using myset's allocator:
p = mymultiset
.get_allocator()
.allocate(5);
// assign some values to array
p[0] = 10;
p[1] = 10;
p[2] = 20;
p[3] = 30;
p[4] = 20;
cout << "The allocated array contains: ";
for (i = 0; i < 5; i++) {
cout << p[i] << " ";
}
cout << endl;
mymultiset.get_allocator().deallocate(p, 5);
return 0;
}
输出:
The allocated array contains: 10 10 20 30 20
相关用法
- C++ multiset equal_range()用法及代码示例
- C++ multiset find()用法及代码示例
- C++ multiset begin()、end()用法及代码示例
- C++ multiset insert()用法及代码示例
- C++ multiset key_comp()用法及代码示例
- C++ multiset clear()用法及代码示例
- C++ multiset empty()用法及代码示例
- C++ multiset count()用法及代码示例
- C++ multiset emplace_hint()用法及代码示例
- C++ multiset crbegin()、crend()用法及代码示例
- C++ multiset rbegin()、rend()用法及代码示例
- C++ multiset cbegin()、cend()用法及代码示例
- C++ multiset max_size()用法及代码示例
- C++ multiset::emplace()用法及代码示例
- C++ multiset erase()用法及代码示例
注:本文由纯净天空筛选整理自tufan_gupta2000大神的英文原创作品 multiset get_allocator() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。