std::swap(std::function)
来自 cppreference.cn
< cpp | utility | functional | function
定义于头文件 <functional> |
||
template< class R, class... Args > void swap( std::function<R(Args...)>& lhs, std::function<R(Args...)>& rhs ) noexcept; |
(自 C++11 起) | |
为 std::function 重载了 std::swap 算法。交换 lhs 和 rhs 的状态。实际调用 lhs.swap(rhs)。
内容 |
[编辑] 参数
lhs, rhs | - | 要交换状态的多态函数包装器 |
[编辑] 返回值
(无)
[编辑] 示例
运行此代码
#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::function<void(const char*, int)> f1{foo}; std::function<void(const char*, int)> f2{bar}; f1("f1", 1); f2("f2", 2); std::cout << "std::swap(f1, f2);\n"; std::swap(f1, f2); f1("f1", 1); f2("f2", 2); }
输出
foo("f1", 1) bar("f2", 2) std::swap(f1, f2); bar("f1", 1) foo("f2", 2)
[编辑] 缺陷报告
以下行为变更缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布行为 | 正确行为 |
---|---|---|---|
LWG 2062 | C++11 | function 的 swap 重载未被要求为 noexcept | 已要求 |
[编辑] 参见
交换内容 (公共成员函数) | |
特化 std::swap 算法 (function) |