function::swap
Zaměnit dva objekty volány.
void swap(function& right);
Parametry
- right
Funkce objektu lze provést výměnu.
Poznámky
Zaměření objektů mezi swapy členskou funkci *this a right.To udělá v čase konstantní a nevyvolává žádné výjimky.
Příklad
// 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);
}
Požadavky
Záhlaví: <functional>
Obor názvů: std