std::pair<T1,T2>::swap
成员函数 | ||||
pair::swap
(C++11)
|
||||
非成员函数 | ||||
(C++20
前)(C++20
前)(C++20
前)(C++20
前)(C++20
前)(C++20)
|
||||
(C++11)
|
||||
(C++11)
|
||||
推导指引(C++17) | ||||
辅助类 | ||||
(C++11)
|
||||
(C++11)
|
||||
(C++23)
|
||||
(C++23)
|
(1) | ||
void swap( pair& other ) noexcept(/* see below */);
|
(C++11 起) (C++20 前) |
|
constexpr void swap( pair& other ) noexcept(/* see below */);
|
(C++20 起) | |
constexpr void swap( const pair& other ) noexcept(/* see below */);
|
(2) | (C++23 起) |
交换 first
与 other.first
及 second
与
other.second
,如同用 using std::swap; swap(first, other.first);
swap(second, other.second); 。
若任一选择的 |
(C++23 前) |
若任一选择的 |
(C++23 起) |
参数
other | - | 要交换值的 pair
|
返回值
(无)
异常
noexcept 说明:
noexcept(
noexcept(swap(first,
other.first)) && 在上述表达式中,按照与 C++17 std::is_nothrow_swappable
特性所用的相同方式查找标识符 |
(C++17 前) |
1)
noexcept 说明:
noexcept(
std::is_nothrow_swappable_v<first_type> && 2)
noexcept 说明:
noexcept(
std::is_nothrow_swappable_v<const
first_type> && |
(C++17 起) |
示例
#include <iostream> #include <utility> #include <string> int main() { std::pair<int, std::string> p1, p2; p1 = std::make_pair(10, "test"); p2.swap(p1); std::cout << "(" << p2.first << ", " << p2.second << ")\n"; }
输出:
(10, test)
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2456 | C++11 | noexcept 说明曾为非良构
|
使之有效 |
参阅
交换两个对象的值 (函数模板) |
|
交换两个 tuple 的内容 ( std::tuple<Types...> 的公开成员函数) |