命名空间
变体
操作

std::tuple<Types...>::swap

来自 cppreference.com
< cpp‎ | utility‎ | tuple
 
 
实用程序库
语言支持
类型支持 (基本类型,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)

 
 
定义在头文件 <tuple>
void swap( tuple& other ) noexcept(/* 见下文 */);
(1) (自 C++11 起)
(自 C++20 起为 constexpr)
constexpr void swap( const tuple& other ) noexcept(/* 见下文 */) const;
(2) (自 C++23 起)

调用 swap (可能是 std::swap,或者可能通过 ADL 找到) 用于 *this 中的每个元素及其在 other 中的对应元素。

如果任何选定的 swap 函数调用是非法的,或者没有交换两个元组的对应元素,则行为是未定义的。

(直到 C++23)

如果任何选定的 swap 函数调用没有交换两个元组的对应元素,则行为是未定义的。

1) 如果 (std::is_swappable_v<Types> && ...) 不是 true,则程序是非法的。
2) 如果 (std::is_swappable_v<const Types> && ...) 不是 true,则程序是非法的。
(自 C++23 起)

内容

[编辑] 参数

other - 要交换的值的元组

[编辑] 返回值

(无)

[编辑] 异常

noexcept 规范:  
noexcept(

    noexcept(swap(std::declval<T0&>>(), std::declval<T0&>())) &&
    noexcept(swap(std::declval<T1&>>(), std::declval<T1&>())) &&
    noexcept(swap(std::declval<T2&>>(), std::declval<T2&>())) &&
    ...

)

在上面的表达式中,标识符 swap 的查找方式与 C++17 std::is_nothrow_swappable 特性使用的查找方式相同。

(直到 C++17)
1)
noexcept 规范:  
noexcept((std::is_nothrow_swappable_v<Types> && ...))
2)
noexcept 规范:  
noexcept((std::is_nothrow_swappable_v<const Types> && ...))
(自 C++17 起)

[编辑] 示例

#include <iostream>
#include <string>
#include <tuple>
 
int main()
{
    std::tuple<int, std::string, float> p1{42, "ABCD", 2.71}, p2;
    p2 = std::make_tuple(10, "1234", 3.14);
 
    auto print_p1_p2 = [&](auto rem)
    {
        std::cout << rem
                  << "p1 = {" << std::get<0>(p1)
                  << ", "     << std::get<1>(p1)
                  << ", "     << std::get<2>(p1) << "}, "
                  << "p2 = {" << std::get<0>(p2)
                  << ", "     << std::get<1>(p2)
                  << ", "     << std::get<2>(p2) << "}\n";
    };
 
    print_p1_p2("Before p1.swap(p2): ");
    p1.swap(p2);
    print_p1_p2("After  p1.swap(p2): ");
    swap(p1, p2);
    print_p1_p2("After swap(p1, p2): ");
}

输出

Before p1.swap(p2): p1 = {42, ABCD, 2.71}, p2 = {10, 1234, 3.14}
After  p1.swap(p2): p1 = {10, 1234, 3.14}, p2 = {42, ABCD, 2.71}
After swap(p1, p2): p1 = {42, ABCD, 2.71}, p2 = {10, 1234, 3.14}

[编辑] 缺陷报告

以下行为改变的缺陷报告已追溯应用于之前发布的 C++ 标准。

DR 应用于 已发布的行为 正确的行为
LWG 2456 C++11 noexcept 规范是非法的 已修复

[编辑] 另请参见

专门化 std::swap 算法
(函数模板) [编辑]
(C++11)
交换内容
(std::pair<T1,T2> 的公共成员函数) [编辑]