std::uses_allocator<std::queue>
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template< class T, class Container, class Alloc > struct uses_allocator<queue<T,Container>,Alloc> : |
(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.
[编辑] 另请参阅
(C++11) |
检查如果指定的类型支持使用分配器建设的 原文: checks if the specified type supports uses-allocator construction (类模板) |