雙端隊列::get_allocator()是C++ STL中的內置函數,用於獲取容器雙端隊列的分配器。
用法:
Allocator_type get_allocator()
參數:該函數不接受任何參數。
返回值:返回與雙端隊列相關的分配器。
以下示例程序旨在說明deque::get_allocator()函數的工作。示例1:
// CPP program to illustrate
// deque get_allocator()
#include <bits/stdc++.h>
using namespace std;
int main()
{
//'de' is object of 'deque'
deque<int> de;
//'allocator_type' is inherit in 'deque'
//'d' is object of 'allocator_type'
deque<int>::allocator_type d = de.get_allocator();
// Comparing the Allocator with Pair<int, int>
cout << "Is allocator Pair<int, int>:"
<< boolalpha
<< (d == allocator<pair<int, int> >());
return 0;
}
輸出:
Is allocator Pair:true
示例2:
// CPP program to illustrate
// deque get_allocator()
#include <bits/stdc++.h>
using namespace std;
int main(void)
{
// Creating a container of type deque
deque<int> de;
// creating a pointer of type int
int* array;
// creating array using mylist get_allocator
array = de.get_allocator().allocate(3);
// inserting some data into array
for (int i = 0; i < 3; i++)
array[i] = i;
// printing details of array
for (int i = 0; i < 3; i++)
cout << array[i] << " ";
return 0;
}
輸出:
0 1 2
相關用法
- C++ deque::pop_front()、deque::pop_back()用法及代碼示例
- C++ deque::clear()、deque::erase()用法及代碼示例
- C++ deque::empty()、deque::size()用法及代碼示例
- C++ deque::front()、deque::back()用法及代碼示例
- C++ deque::emplace_front()、deque::emplace_back()用法及代碼示例
- C++ deque::at()、deque::swap()用法及代碼示例
- C++ deque cbegin()用法及代碼示例
- C++ deque crbegin用法及代碼示例
- C++ deque crend用法及代碼示例
- C++ deque emplace用法及代碼示例
- C++ deque shrink_to_fit用法及代碼示例
- C++ deque::push_front()用法及代碼示例
- C++ deque::push_back()用法及代碼示例
注:本文由純淨天空篩選整理自ankit15697大神的英文原創作品 deque get_allocator in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。