std::swap(std::function)
来自 cppreference.com
< 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++ 标准。
DR | 应用于 | 已发布的行为 | 正确行为 |
---|---|---|---|
LWG 2062 | C++11 | function 的 swap 重载不需要是 noexcept |
需要 |
[编辑] 另请参阅
交换内容 (公共成员函数) | |
专门化了 std::swap 算法 (函数) |