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::swap 算法,用于 std::function。交换 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++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 2062 | C++11 | function 的 swap 重载不要求是 noexcept |
需要 |
[编辑] 参阅
交换内容 (public member function) | |
特化 std::swap 算法 (function) |