function::swap
2 つの呼び出し可能オブジェクトを交換します。
void swap(function& right);
パラメーター
- right
交換する関数オブジェクト。
解説
このメンバー関数は、*this と right の間でターゲット オブジェクトを交換します。 この処理は定数時間で実行され、例外はスローされません。
使用例
// std_tr1__functional__function_swap.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::function<int (int)> fn0(neg);
std::cout << std::boolalpha << "empty == " << !fn0 << std::endl;
std::cout << "val == " << fn0(3) << std::endl;
std::function<int (int)> fn1;
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << std::endl;
fn0.swap(fn1);
std::cout << std::boolalpha << "empty == " << !fn0 << std::endl;
std::cout << std::boolalpha << "empty == " << !fn1 << std::endl;
std::cout << "val == " << fn1(3) << std::endl;
return (0);
}
必要条件
ヘッダー: <functional>
名前空間: std