std::allocator_traits
来自 cppreference.cn
| 定义于头文件 <memory> |
||
| template< class Alloc > struct allocator_traits; |
(C++11 起) | |
allocator_traits 类模板提供了一种标准化的方式来访问 Allocator 的各种属性。标准容器和其他标准库组件通过此模板访问分配器,从而可以使用任何类类型作为分配器,只要用户提供的 std::allocator_traits 特化实现了所有必需的功能。
|
声明 |
(C++23 起) |
默认的、非特化的 std::allocator_traits 包含以下成员
目录 |
[编辑] 成员类型
| 类型 | 定义 |
allocator_type
|
Alloc
|
value_type
|
Alloc::value_type
|
pointer
|
如果存在,则为 Alloc::pointer,否则为 value_type* |
const_pointer
|
如果存在,则为 Alloc::const_pointer,否则为 std::pointer_traits<pointer>::rebind<const value_type> |
void_pointer
|
如果存在,则为 Alloc::void_pointer,否则为 std::pointer_traits<pointer>::rebind<void> |
const_void_pointer
|
如果存在,则为 Alloc::const_void_pointer,否则为 std::pointer_traits<pointer>::rebind<const void> |
difference_type
|
如果存在,则为 Alloc::difference_type,否则为 std::pointer_traits<pointer>::difference_type |
size_type
|
如果存在,则为 Alloc::size_type,否则为 std::make_unsigned<difference_type>::type |
propagate_on_container_copy_assignment
|
如果存在,则为 Alloc::propagate_on_container_copy_assignment,否则为 std::false_type |
propagate_on_container_move_assignment
|
如果存在,则为 Alloc::propagate_on_container_move_assignment,否则为 std::false_type |
propagate_on_container_swap
|
如果存在,则为 Alloc::propagate_on_container_swap,否则为 std::false_type |
is_always_equal
|
如果存在,则为 Alloc::is_always_equal,否则为 std::is_empty<Alloc>::type |
[编辑] 成员别名模板
| 类型 | 定义 |
rebind_alloc<T>
|
如果存在,则为 Alloc::rebind<T>::other,否则如果此 Alloc 形式为 SomeAllocator<U, Args>,则为 SomeAllocator<T, Args>,其中 Args 是零个或多个 类型参数 |
rebind_traits<T>
|
std::allocator_traits<rebind_alloc<T>> |
[编辑] 成员函数
| [静态] |
使用分配器分配未初始化的存储 (public static member function) |
| [static] (C++23) |
通过分配器分配至少请求大小的存储空间 (public static member function) |
| [静态] |
使用分配器释放存储 (public static member function) |
| [静态] |
在已分配的存储中构造一个对象 (function template) |
| [静态] |
销毁存储在已分配存储中的对象 (function template) |
| [静态] |
返回分配器支持的最大对象大小 (public static member function) |
| 获取复制标准容器后使用的分配器 (public static member function) |
[编辑] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
| 缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
|---|---|---|---|
| LWG 2108 | C++11 | 无法显示分配器是无状态的 | 提供 is_always_equal |
[编辑] 另请参阅
使用分配器的容器;相关特性(例如 propagate_on_container_swap)用法(命名要求) | |
| 默认分配器 (类模板) | |
| (C++11) |
为多层容器实现多层分配器 (类模板) |
| (C++11) |
提供有关类指针类型的信息 (类模板) |