std::allocator_arg_t
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <memory> 中定义
|
||
struct allocator_arg_t {}; |
(C++11 起) | |
std::allocator_arg_t
是一个空的类类型,对它们进行区分的重载的构造函数和成员函数的分配器感知的对象,包括std::tuple,std::function,std::promise,并std::packaged_task.原文:
std::allocator_arg_t
is an empty class type used to disambiguate the overloads of constructors and member functions of allocator-aware objects, including std::tuple, std::function, std::promise, and std::packaged_task.[编辑] 另请参阅
(C++11) |
一个对象的类型std::allocator_arg_t用来选择分配器感知的构造函数 原文: an object of type std::allocator_arg_t used to select allocator-aware constructors (常量) |
(C++11) |
检查如果指定的类型支持使用分配器建设的 原文: checks if the specified type supports uses-allocator construction (类模板) |