swap(std::move_only_function)
来自 cppreference.com
< cpp | utility | functional | 仅移动函数
friend void swap( std::move_only_function& lhs, std::move_only_function& rhs ) noexcept; |
(自 C++23 起) | |
重载 std::swap 算法以用于 std::move_only_function。将 lhs 的状态与 rhs 的状态交换。实际上调用了 lhs.swap(rhs).
此函数对普通 非限定 或 限定查找不可见,只有在 std::move_only_function<FunctionType>
是参数的关联类时,才能通过 参数相关查找找到它。
内容 |
[编辑] 参数
lhs, rhs | - | std::move_only_function 对象,用于交换其状态 |
[编辑] 返回值
(无)
[编辑] 示例
运行此代码
#include <concepts> #include <functional> #include <iostream> void foo(const char* str, int x) { std::cout << "foo(\"" << str << "\", " << x << ")\n"; } void bar(const char* str, int x) { std::cout << "bar(\"" << str << "\", " << x << ")\n"; } int main() { std::move_only_function<void(const char*, int) const> f1{foo}; std::move_only_function<void(const char*, int) const> f2{bar}; f1("f1", 1); f2("f2", 2); std::cout << "std::ranges::swap(f1, f2);\n"; std::ranges::swap(f1, f2); // finds the hidden friend f1("f1", 1); f2("f2", 2); }
输出
foo("f1", 1) bar("f2", 2) std::ranges::swap(f1, f2); bar("f1", 1) foo("f2", 2)
[编辑] 另请参阅
交换两个 std::move_only_function 对象的目标(公有成员函数) | |
(C++11) |
专门化 std::swap 算法 (函数模板) |