共用方式為


vector::get_allocator

傳回用來配置及解除配置向量之項目記憶體的配置器物件複本。

Allocator get_allocator( ) const;

傳回值

向量所使用的配置器。

備註

配置器可控制類別管理儲存空間的方式。 預設配置器所提供的STL 容器類別,已足夠大多數的程式設計需求。 撰寫和使用您自己的配置器類別是進階 C++ 主題。

範例

// vector_get_allocator.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

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

   // v3 will use the same allocator class as v1
   vector <int> v3( v1.get_allocator( ) );

   vector<int>::allocator_type xvec = v3.get_allocator( );
   // You can now call functions on the allocator class used by vec
}

需求

標頭:<vector>

命名空間: std

請參閱

參考

vector 類別

標準樣板程式庫