std::optional<T>::emplace
来自 cppreference.com
template< class... Args > T& emplace( Args&&... args ); |
(1) | (自 C++17 起) (自 C++20 起为 constexpr) |
template< class U, class... Args > T& emplace( std::initializer_list<U> ilist, Args&&... args ); |
(2) | (自 C++17 起) (自 C++20 起为 constexpr) |
在内部构造包含的值。如果在调用之前 *this 已经包含了一个值,则包含的值将通过调用其析构函数销毁。
2) 通过调用其构造函数包含的值 ilist, std::forward<Args>(args)... 作为参数。只有当 std::is_constructible<T, std::initializer_list<U>&, Args&&...>::value 为 true 时,此重载才会参与重载解析。
内容 |
[编辑] 参数
args... | - | 要传递给构造函数的参数 |
ilist | - | 要传递给构造函数的初始化列表 |
类型需求 | ||
-T 必须可以从 Args... 构造,才能使用重载 (1) | ||
-T 必须可以从 std::initializer_list 和 Args... 构造,才能使用重载 (2) |
[编辑] 返回值
对新包含的值的引用。
[编辑] 异常
由 T
的所选构造函数抛出的任何异常。如果抛出了异常,则在这次调用之后 *this 不会包含值(先前包含的值,如果有,已经销毁)。
功能测试 宏 | 值 | Std | 功能 |
---|---|---|---|
__cpp_lib_optional |
202106L | (C++20) (DR20) |
完全 constexpr (1,2) |
[编辑] 示例
运行这段代码
#include <iostream> #include <optional> struct A { std::string s; A(std::string str) : s(std::move(str)), id{n++} { note("+ constructed"); } ~A() { note("~ destructed"); } A(const A& o) : s(o.s), id{n++} { note("+ copy constructed"); } A(A&& o) : s(std::move(o.s)), id{n++} { note("+ move constructed"); } A& operator=(const A& other) { s = other.s; note("= copy assigned"); return *this; } A& operator=(A&& other) { s = std::move(other.s); note("= move assigned"); return *this; } inline static int n{}; int id{}; void note(auto s) { std::cout << " " << s << " #" << id << '\n'; } }; int main() { std::optional<A> opt; std::cout << "Assign:\n"; opt = A("Lorem ipsum dolor sit amet, consectetur adipiscing elit nec."); std::cout << "Emplace:\n"; // As opt contains a value it will also destroy that value opt.emplace("Lorem ipsum dolor sit amet, consectetur efficitur."); std::cout << "End example\n"; }
输出
Assign: + constructed #0 + move constructed #1 ~ destructed #0 Emplace: ~ destructed #1 + constructed #2 End example ~ destructed #2
[编辑] 缺陷报告
以下行为更改缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
P2231R1 | C++20 | emplace 不是 constexpr,而所需操作可以在 C++20 中为 constexpr |
变为 constexpr |
[编辑] 另请参阅
分配内容 (公共成员函数) |