std::optional<T>::reset
来自 cppreference.com
void reset() noexcept; |
(自 C++17 起) (自 C++20 起为 constexpr) |
|
如果 *this 包含一个值,则销毁该值,如同使用 value().T::~T() 一样。否则,没有效果。
*this 在此调用之后不包含任何值。
内容 |
[编辑] 注释
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_optional |
202106L | (C++20) (DR20) |
完全 constexpr |
[编辑] 示例
运行此代码
#include <iostream> #include <optional> struct A { std::string s; A(std::string str) : s(std::move(str)) { std::cout << " constructed\n"; } ~A() { std::cout << " destructed\n"; } A(const A& o) : s(o.s) { std::cout << " copy constructed\n"; } A(A&& o) : s(std::move(o.s)) { std::cout << " move constructed\n"; } A& operator=(const A& other) { s = other.s; std::cout << " copy assigned\n"; return *this; } A& operator=(A&& other) { s = std::move(other.s); std::cout << " move assigned\n"; return *this; } }; int main() { std::cout << "Create empty optional:\n"; std::optional<A> opt; std::cout << "Construct and assign value:\n"; opt = A("Lorem ipsum dolor sit amet, consectetur adipiscing elit nec."); std::cout << "Reset optional:\n"; opt.reset(); std::cout << "End example\n"; }
输出
Create empty optional: Construct and assign value: constructed move constructed destructed Reset optional: destructed End example
[编辑] 缺陷报告
以下行为变更缺陷报告已追溯应用于之前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
P2231R1 | C++20 | reset 不是 constexpr,而在 C++20 中,允许在 constexpr 中进行非平凡销毁 |
已改为 constexpr |
[编辑] 另请参阅
分配内容 (公共成员函数) |