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