std::construct_at
来自 cppreference.com
在头文件 <memory> 中定义 |
||
template< class T, class... Args > constexpr T* construct_at( T* p, Args&&... args ); |
(自 C++20 起) | |
在给定地址 p 上创建一个使用参数 args... 初始化的 T
对象。只有当 ::new(std::declval<void*>()) T(std::declval<Args>()...) 在未评估的上下文中格式正确时,此函数模板的特化才参与重载解析。
等效于
return ::new (static_cast<void*>(p)) T(std::forward<Args>(args)...);
除了 construct_at
可用于 常量表达式 的评估。
当 construct_at
在某些常量表达式 e 的评估中被调用时,参数 p
必须指向通过 std::allocator<T>::allocate 获得的存储空间,或者指向其生命周期在 e 的评估中开始的对象。
内容 |
[编辑] 参数
p | - | 指向将要构造 T 对象的未初始化存储空间的指针 |
args... | - | 用于初始化的参数 |
[编辑] 返回值
p
[编辑] 示例
运行此代码
#include <bit> #include <memory> class S { int x_; float y_; double z_; public: constexpr S(int x, float y, double z) : x_{x}, y_{y}, z_{z} {} [[nodiscard("no side-effects!")]] constexpr bool operator==(const S&) const noexcept = default; }; consteval bool test() { alignas(S) unsigned char storage[sizeof(S)]{}; S uninitialized = std::bit_cast<S>(storage); std::destroy_at(&uninitialized); S* ptr = std::construct_at(std::addressof(uninitialized), 42, 2.71f, 3.14); const bool res{*ptr == S{42, 2.71f, 3.14}}; std::destroy_at(ptr); return res; } static_assert(test()); int main() {}
[编辑] 缺陷报告
以下行为更改的缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | construct_at 可以创建 cv 限定类型的对象 |
仅允许 cv 非限定类型 |
[编辑] 另请参阅
分配未初始化的存储空间 ( std::allocator<T> 的公有成员函数) | |
[静态] |
在分配的存储空间中构造对象 (函数模板) |
(C++17) |
销毁给定地址上的对象 (函数模板) |
(C++20) |
在给定地址创建对象 (niebloid) |