命名空间
变体
操作

std::uses_allocator<std::stack>

来自 cppreference.com
< cpp‎ | container‎ | stack
在头文件 <stack> 中定义
template< class T, class Container, class Alloc >

struct uses_allocator<std::stack<T, Container>, Alloc>

    : std::uses_allocator<Container, Alloc>::type {};
(自 C++11)

std::stack 提供 std::uses_allocator 类型特性的透明特化:容器适配器使用分配器当且仅当底层容器使用分配器。

内容

std::integral_constant 继承

成员常量

[静态]

(公共静态成员常量)

成员函数

operator bool
将对象转换为 bool,返回 value
(公共成员函数)
operator()
(C++14)
返回 value
(公共成员函数)

成员类型

类型 定义
value_type 布尔
类型 std::integral_constant<bool, value>

[编辑] 示例

#include <memory>
#include <stack>
 
static_assert(
    std::uses_allocator<std::stack<int>, void>::value == false &&
    std::uses_allocator<std::stack<int>, std::allocator<int>>::value == true
);
 
int main() {}

[编辑] 另请参阅

检查指定类型是否支持使用分配器构造
(类模板) [编辑]