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;

参数

没有任何

返回值

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

例外情况

如果抛出异常,则字符串不会发生任何变化。

字符串.htm