deque::get_allocator
傳回用來配置器物件的複製建構雙向佇列。
Allocator get_allocator( ) const;
傳回值
雙向佇列使用的配置器。
備註
雙向佇列類別的配置器指定類別如何處理儲存區。 預設配置器提供 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