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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。