共用方式為


list::get_allocator

傳回用來建構清單的配置器物件複本。

Allocator get_allocator( ) const;

傳回值

清單使用的配置器。

備註

供 list 類別用於指定類別如何管理儲存的配置器。 預設配置器所提供的STL 容器類別,已足夠大多數的程式設計需求。 撰寫和使用您自己的配置器類別是進階 C++ 主題。

範例

// list_get_allocator.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

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

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

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

需求

標頭:<list>

命名空間: std

請參閱

參考

list 類別

標準樣板程式庫