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