C++ Memory 库 - allocator_traits
描述
它为分配器类型提供了一个统一的接口。
声明
以下是 std::allocator_traits 函数的声明。
template <class Alloc> struct allocator_traits;
C++11
template <class Alloc> struct allocator_traits;
参数
T − 它包含有关元素类型的信息。
成员类型
类型 | 定义 |
---|---|
allocator_type |
Template parameter |
value_type |
allocator_type::value_type |
pointer |
allocator_type::pointer |
const_pointer (deprecated in C++17) |
const T* |
reference (deprecated in C++17) |
T& |
const_reference (deprecated in C++17) |
const T& |
size_type (deprecated in C++17) |
std::size_t |
difference_type (deprecated in C++17) |
std::ptrdiff_t |
propagate_on_container_move_assignment (C++14) |
std::true_type |
rebind (deprecated in C++17) |
template<class U >struct rebind { typedef allocator<U>other;}; |
rebind_traits<T> |
allocator_traits<rebind_alloc<T>> |