C++ 字符串库 - get_allocator



描述

它返回与字符串关联的分配器对象的副本。

声明

以下是 std::string::get_allocator 的声明。

allocator_type get_allocator() const;

C++11

allocator_type get_allocator() const noexcept;

C++14

allocator_type get_allocator() const noexcept;

参数

返回值

它返回与字符串关联的分配器对象的副本。

异常

如果抛出异常,字符串不会发生任何更改。

string.htm
广告