次の方法で共有


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 Class

標準テンプレート ライブラリ