std::ranges::construct_at
来自cppreference.com
在标头 <memory> 定义
|
||
调用签名 |
||
template< class T, class... Args > constexpr T* construct_at( T* p, Args&&... args ); |
(C++20 起) | |
在给定地址 p 创建以实参 args... 初始化的 T
对象。construct_at
仅若 ::new(std::declval<void*>()) T(std::declval<Args>()...) 在不求值语境中为良构才参与重载决议。
等价于
return ::new (static_cast<void*>(p)) T(std::forward<Args>(args)...);
但 construct_at
可用于常量表达式的求值。
在某常量表达式 e 的求值中调用 construct_at
时,实参 p 必须指向用 std::allocator<T>::allocate 获得的存储或生存期始于 e 的求值内的对象。
此页面上描述的函数式实体是 niebloid,即:
实践中,可以作为函数对象,或者用某些特殊编译器扩展实现它们。
参数
p | - | 指向将在其上构造 T 对象的未初始化存储的指针
|
args... | - | 用于初始化的实参 |
返回值
p
可能的实现
struct construct_at_fn { template<class T, class...Args> requires requires (void* vp, Args&&... args) { ::new (vp) T(static_cast<Args&&>(args)...); } constexpr T* operator()(T* p, Args&&... args) const { return std::construct_at(p, static_cast<Args&&>(args)...); } }; inline constexpr construct_at_fn construct_at{}; |
注解
std::ranges::construct_at
与 std::construct_at
表现严格相同,但它对实参依赖查找不可见。
示例
运行此代码
#include <iostream> #include <memory> struct S { int x; float y; double z; S(int x, float y, double z) : x{x}, y{y}, z{z} { std::cout << "S::S();\n"; } ~S() { std::cout << "S::~S();\n"; } void print() const { std::cout << "S { x=" << x << "; y=" << y << "; z=" << z << "; };\n"; } }; int main() { alignas(S) unsigned char buf[sizeof(S)]; S* ptr = std::ranges::construct_at(reinterpret_cast<S*>(buf), 42, 2.71828f, 3.1415); ptr->print(); std::ranges::destroy_at(ptr); }
输出:
S::S(); S { x=42; y=2.71828; z=3.1415; }; S::~S();
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 3870 | C++20 | construct_at 能创建 cv 限定类型的对象
|
仅允许无 cv 限定的类型 |
参阅
(C++20) |
销毁位于给定地址的元素 (niebloid) |
(C++20) |
在给定地址创建对象 (函数模板) |