std::uses_allocator<std::tuple>
来自 cppreference.com
在头文件中定义 <tuple> |
||
template< class... Types, class Alloc > struct uses_allocator< std::tuple<Types...>, Alloc > : std::true_type { }; |
(自 C++11) | |
这个 std::uses_allocator 的特化告知其他库组件元组支持使用分配器构造,尽管它们没有嵌套的 allocator_type
。
内容 |
从 std::integral_constant 继承
成员常量
value [静态] |
true (公共静态成员常量) |
成员函数
operator bool |
将对象转换为 bool,返回 value (公共成员函数) |
operator() (C++14) |
返回 value (公共成员函数) |
成员类型
类型 | 定义 |
value_type
|
bool |
type
|
std::integral_constant<bool, value> |
[编辑] 示例
// myalloc is a stateful Allocator with a single-argument constructor // that takes an int. It has no default constructor. using innervector_t = std::vector<int, myalloc<int>>; using elem_t = std::tuple<int, innervector_t>; using Alloc = std::scoped_allocator_adaptor< myalloc<elem_t>, myalloc<int>>; Alloc a(1,2); std::vector<elem_t, Alloc> v(a); v.resize(1); // uses allocator #1 for elements of v std::get<1>(v[0]).resize(10); // uses allocator #2 for innervector_t
[编辑] 参见
(C++11) |
检查指定类型是否支持使用分配器构造 (类模板) |