std::allocator_traits<Alloc>::construct
来自 cppreference.com
< cpp | memory | allocator traits
定义在头文件 <memory> 中 |
||
template< class T, class... Args > static void construct( Alloc& a, T* p, Args&&... args ); |
(自 C++11 起) (自 C++20 起为 constexpr) |
|
如果可能,通过调用 a.construct(p, std::forward<Args>(args)...),在由 p 指向的已分配的未初始化存储中构造类型为 T
的对象。
如果上述操作不可行(例如,Alloc
没有 construct()
成员函数),则调用
::new (static_cast<void*>(p)) T(std::forward<Args>(args)...) |
(直到 C++20) |
std::construct_at(p, std::forward<Args>(args)...) |
(自 C++20 起) |
内容 |
[编辑] 参数
a | - | 用于构造的分配器 |
p | - | 指向将构造 T 对象的未初始化存储的指针 |
args... | - | 要传递给 a.construct() 或 placement-new(直到 C++20)std::construct_at()(自 C++20 起) 的构造函数参数 |
[编辑] 返回值
(无)
[编辑] 备注
此函数由标准库容器在插入、复制或移动元素时使用。
由于此函数提供了对放置 new 的自动回退,因此 construct()
成员函数自 C++11 起成为 Allocator 的可选要求。
[编辑] 另请参阅
分配函数 (函数) | |
(直到 C++20) |
在分配的存储空间中构造对象 ( std::allocator<T> 的公有成员函数) |
(C++20) |
在给定地址处创建对象 (函数模板) |