std::swap(std::function)
< 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 | 未要求 swap 对 function 的重载为 noexcept
|
已要求 |
参阅
交换内容 (公开成员函数) |