次の方法で共有


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

参照

関連項目

basic_string Class