次の方法で共有


basic_string::allocator_type

文字列オブジェクトのアロケーター クラスを表す型。

typedef Allocator allocator_type;

解説

この型は、テンプレート パラメーター Allocatorのシノニムです。

使用例

// basic_string_allocator_type.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>::allocator_type xchar = s1.get_allocator( );
   // You can now call functions on the allocator class xchar used by s1
}

必要条件

ヘッダー: <string>

名前空間: std

参照

関連項目

basic_string Class