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

成员常量

value
[静态]
true
(公开静态成员常量)

成员函数

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

成员类型

类型 定义
value_type bool
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() {}

参阅

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