std::swap(std::pair)
来自 cppreference.com
定义在头文件 <utility> 中 |
||
(1) | ||
(自 C++11) (C++20 之前) |
||
(自 C++20) | ||
(2) | (自 C++23) | |
交换 x
和 y
的内容。等效于 x.swap(y).
2) 仅当 std::is_swappable_v<const first_type> && std::is_swappable_v<const second_type> 为 true 时,此重载才会参与重载解析。
|
(自 C++17) |
内容 |
[编辑] 参数
x, y | - | 要交换其内容的配对 |
[编辑] 返回值
(无)
[编辑] 异常
noexcept 规范:
noexcept(noexcept(x.swap(y)))
[编辑] 示例
运行此代码
#include <iostream> #include <utility> int main() { auto p1 = std::make_pair(10, 3.14); auto p2 = std::pair(12, 1.23); // CTAD, since C++17 auto print_p1_p2 = [&](auto msg) { std::cout << msg << "p1 = {" << std::get<0>(p1) << ", " << std::get<1>(p1) << "}, " << "p2 = {" << std::get<0>(p2) << ", " << std::get<1>(p2) << "}\n"; }; print_p1_p2("Before p1.swap(p2): "); p1.swap(p2); print_p1_p2("After p1.swap(p2): "); std::swap(p1, p2); print_p1_p2("After swap(p1, p2): "); }
输出
Before p1.swap(p2): p1 = {10, 3.14}, p2 = {12, 1.23} After p1.swap(p2): p1 = {12, 1.23}, p2 = {10, 3.14} After swap(p1, p2): p1 = {10, 3.14}, p2 = {12, 1.23}
[编辑] 另请参阅
交换两个对象的 value (函数模板) | |
(C++11) |
专门化 std::swap 算法 (函数模板) |