命名空间
变体
操作

std::pair<T1,T2>::swap

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

 
 
(1)
void swap( pair& other ) noexcept(/* 见下文 */);
(自 C++11 起)
(直到 C++20)
constexpr void swap( pair& other ) noexcept(/* 见下文 */);
(自 C++20 起)
constexpr void swap( const pair& other ) const noexcept(/* 见下文 */);
(2) (自 C++23 起)

交换 firstother.first 以及 secondother.second,就像使用 using std::swap; swap(first, other.first); swap(second, other.second); 一样。

如果选定的两个 swap 函数调用任何一个不合法或没有交换成员的值,则行为未定义。

(直到 C++23)
1) 如果 std::is_swappable_v<T1>std::is_swappable_v<T2> 不是 true,则程序不合法。
2) 如果 std::is_swappable_v<const T1>std::is_swappable_v<const T2> 不是 true,则程序不合法。

如果选定的两个 swap 函数调用任何一个没有交换成员的值,则行为未定义。

(自 C++23 起)

内容

[编辑] 参数

other - 要交换的值对

[编辑] 返回值

(无)

[编辑] 异常

noexcept 规范:  
noexcept(

     noexcept(swap(first, other.first)) &&
     noexcept(swap(second, other.second))

)

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

(直到 C++17)
1)
noexcept 规范:  
noexcept(

     std::is_nothrow_swappable_v<first_type> &&
     std::is_nothrow_swappable_v<second_type>

)
2)
noexcept 规范:  
noexcept(

     std::is_nothrow_swappable_v<const first_type> &&
     std::is_nothrow_swappable_v<const second_type>

)
(自 C++17 起)

[编辑] 示例

#include <iostream>
#include <utility>
#include <string>
int main()
{
    std::pair<int, std::string> p1(10, "test"), p2;
    p2.swap(p1);
    std::cout << "(" << p2.first << ", " << p2.second << ")\n";
 
#if __cpp_lib_ranges_zip >= 202110L
    // Using the C++23 const qualified swap overload
    // (swap is no longer propagating pair constness)
    int i1 = 10, i2{};
    std::string s1("test"), s2;
    const std::pair<int&, std::string&> r1(i1, s1), r2(i2, s2);
    r2.swap(r1);
    std::cout << "(" << i2 << ", " << s2 << ")\n";
#endif
}

可能的输出

(10, test)
(10, test)

[编辑] 缺陷报告

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

DR 应用于 已发布的行为 正确行为
LWG 2456 C++11 noexcept 规范不合法 使其正常工作

[编辑] 参见

交换两个对象的 值
(函数模板) [编辑]
交换两个 tuple 的内容
(std::tuple<Types...> 的公共成员函数) [编辑]