命名空间
变体
操作

std::optional<T>::swap

来自 cppreference.com
< cpp‎ | utility‎ | optional
 
 
实用程序库
语言支持
类型支持 (基本类型, RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三元比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
 
void swap( optional& other ) noexcept(/* see below */);
(自 C++17 起)
(自 C++20 起为 constexpr)

将内容与 other 的内容交换。

  • 如果 *thisother 都没有包含值,则函数没有效果。
  • 如果 *thisother 中只有一个包含值(我们将这个对象称为 in,另一个称为 un),则 un 的包含值将从 std::move(*in) 中进行 直接初始化,然后使用 in->T::~T() 销毁 in 的包含值,如同使用 in->T::~T() 一样。调用此函数后,in 将不再包含值;un 将包含值。
  • 如果 *thisother 都包含值,则通过调用 using std::swap; swap(**this, *other) 交换包含值。

除非类型 T可交换的 并且 std::is_move_constructible_v<T>true,否则程序格式错误。

内容

[编辑] 参数

other - 要交换内容的 optional 对象

[编辑] 返回值

(无)

[编辑] 异常

在发生异常的情况下,*thisother 的包含值的 state 将由类型 TswapT 的移动构造函数的异常安全保证决定,具体取决于哪个函数被调用。对于 *thisother 来说,如果对象包含值,则它将继续包含值,反之亦然。

功能测试 Std 功能
__cpp_lib_optional 202106L (C++20)
(DR20)
完全 constexpr

[编辑] 示例

#include <iostream>
#include <optional>
#include <string>
 
int main()
{
    std::optional<std::string> opt1("First example text");
    std::optional<std::string> opt2("2nd text");
 
    enum Swap { Before, After };
    auto print_opts = [&](Swap e)
    {
        std::cout << (e == Before ? "Before swap:\n" : "After swap:\n");
        std::cout << "opt1 contains '" << opt1.value_or("") << "'\n";
        std::cout << "opt2 contains '" << opt2.value_or("") << "'\n";
        std::cout << (e == Before ? "---SWAP---\n": "\n");
    };
 
    print_opts(Before);
    opt1.swap(opt2);
    print_opts(After);
 
    // Swap with only 1 set
    opt1 = "Lorem ipsum dolor sit amet, consectetur tincidunt.";
    opt2.reset();
 
    print_opts(Before);
    opt1.swap(opt2);
    print_opts(After);
}

输出

Before swap:
opt1 contains 'First example text'
opt2 contains '2nd text'
---SWAP---
After swap:
opt1 contains '2nd text'
opt2 contains 'First example text'
 
Before swap:
opt1 contains 'Lorem ipsum dolor sit amet, consectetur tincidunt.'
opt2 contains ''
---SWAP---
After swap:
opt1 contains ''
opt2 contains 'Lorem ipsum dolor sit amet, consectetur tincidunt.'

[编辑] 缺陷报告

以下更改行为的缺陷报告已追溯应用到先前发布的 C++ 标准。

DR 应用于 发布的行为 正确的行为
P2231R1 C++20 swap 不是 constexpr,而必需的操作在 C++20 中可以是 constexpr 已改为 constexpr

[编辑] 参见

专门化了 std::swap 算法
(函数模板) [编辑]