共用方式為


list::get_allocator

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

Allocator get_allocator( ) const;

傳回值

清單的配置器。

備註

清單類別的配置器指定類別如何處理儲存區。 預設配置器提供 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 Class

標準樣板程式庫