unordered_multiset :: get_allocator()函数是C++中的STL函数,用于在程序中包含unorder_multiset头文件。此函数获取存储的分配器对象,并返回用于构造容器的分配器对象。这是一个公共成员函数。
句法:
allocator_type get_allocator() const;
此处allocator_type是容器使用的分配器的类型。
参数:不接受任何参数。
返回值:返回分配器类型。
下面的程序说明了C++ STL中的get_allocator方法:
程序:
// c++ program to understand 'unordered_multiset_get_allocator'
#include
#include
using namespace std;
// main() method
int main()
{
//'m' is object of 'unordered_set'
unordered_multiset m;
//'allocator_type' is inherit in 'unordered_multiset'
//'t' is object of 'allocator_type'
//'get_allocator()' is member of 'unordered_set'
unordered_multiset::allocator_type t = m.get_allocator();
// Comparing the Allocator with 'Pair'
cout << "allocator is : "
<< boolalpha << (t == allocator >());
return (0);
}
输出:
allocator is : true
复杂性:执行操作需要花费恒定的复杂性时间。
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。