basic_string::get_allocator
傳回用來配置器物件建構字串的複本。
allocator_type get_allocator( ) const;
傳回值
使用字串的配置器。
備註
成員函式傳回儲存的配置器物件。
字串類別的配置器指定類別如何處理儲存區。 預設配置器提供容器類別適用於大部分的程式設計需求是否足夠。 擁有配置器類別的撰寫和使用為進階 C++ 的主題。
範例
// basic_string_get_allocator.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
// The following lines declare objects
// that use the default allocator.
string s1;
basic_string <char> s2;
basic_string <char, char_traits< char >, allocator< char > > s3;
// s4 will use the same allocator class as s1
basic_string <char> s4( s1.get_allocator ( ) );
basic_string <char>::allocator_type xchar = s1.get_allocator( );
// You can now call functions on the allocator class xchar used by s1
}
需求
標題: <string>
命名空間: std