std::swap(std::optional)

< cpp‎ | utility‎ | optional
 
 
工具库
通用工具
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中弃用)
整数比较函数
(C++20)
swap 与类型运算
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
常用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++17)

初等字符串转换
(C++17)
(C++17)
 
 
定义于头文件 <optional>
template< class T >
void swap( optional<T>& lhs, optional<T>& rhs ) noexcept(/* see below */);
(C++17 起)

std::optional 重载 std::swap 算法。交换 lhsrhs 的状态。等效地调用 lhs.swap(rhs)

此重载仅若 std::is_move_constructible_v<T>std::is_swappable_v<T> 皆为true 才参与重载决议。

参数

lhs, rhs - 要交换状态的 optional 对象

返回值

(无)

异常

noexcept 规定:  
noexcept(noexcept(lhs.swap(rhs)))

示例

#include <iostream>
#include <optional>
#include <string>
 
int main()
{
    std::optional<std::string> a{"██████"}, b{"▒▒▒▒▒▒"}; 
 
    auto print = [&](auto const& s) {
        std::cout 
            << s << "\t"
            << "a = " << a.value_or("(null)") << "  "
            << "b = " << b.value_or("(null)") << '\n';
    };
 
    print("Initially:");
    std::swap(a, b);
    print("swap(a, b):");
    a.reset();
    print("\n""a.reset():");
    std::swap(a, b);
    print("swap(a, b):");
}

输出:

Initially:	a = ██████  b = ▒▒▒▒▒▒
swap(a, b):	a = ▒▒▒▒▒▒  b = ██████
 
a.reset():	a = (null)  b = ██████
swap(a, b):	a = ██████  b = (null)

参阅

交换内容
(公开成员函数)