std::uses_allocator<std::queue>

来自cppreference.com
< cpp‎ | container‎ | queue

 
 
 
的std ::队列
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
queue::queue
queue::~queue
queue::operator=
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
queue::front
queue::back
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
queue::empty
queue::size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
queue::push
queue::emplace
queue::pop
queue::swap
 
template< class T, class Container, class Alloc >

struct uses_allocator<queue<T,Container>,Alloc> :

    std::uses_allocator<Container, Alloc>::type { };
(C++11 起)
提供透明的专业化的std::uses_allocator型特征std::queue:当且仅当底层的容器,容器适配器使用分配器.​​
原文:
Provides a transparent specialization of the std::uses_allocator type trait for std::queue: the container adaptor uses allocator if and only if the underlying container does.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 另请参阅

(C++11)
检查如果指定的类型支持使用分配器建设的
原文:
checks if the specified type supports uses-allocator construction
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

(类模板) [edit]