deque::get_allocator

用于返回的对象分配程序的复制构造 deque。

Allocator get_allocator( ) const;

返回值

使用 deque 的分配器。

备注

deque 类的分配器指定类如何管理存储。 默认分配程序都附有 STL 容器类用于大多数编程的需要即可。 拥有分配编写和使用程序类是高级 C++ 主题。

示例

// deque_get_allocator.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( ) 
{
   using namespace std;
   // The following lines declare objects that use the default allocator.
   deque <int> c1;
   deque <int, allocator<int> > c2 = deque <int, allocator<int> >( allocator<int>( ) );

   // c3 will use the same allocator class as c1
   deque <int> c3( c1.get_allocator( ) );

   deque <int>::allocator_type xlst = c1.get_allocator( );
   // You can now call functions on the allocator class used by c1
}

要求

标头: <deque>

命名空间: std

请参见

参考

deque 类

标准模板库