Partager via


swap Function <functional>

Échange deux objets d' function .

template<class Fty>
void swap(function<Fty>& f1,
    function<Fty>& f2);

Paramètres

  • Fty
    Le type contrôlé par les objets de fonction.

  • f1
    Le premier objet de fonction.

  • f2
    Le deuxième objet de fonction.

Notes

La fonction retourne f1.swap(f2).

Exemple

 

// std_tr1__functional__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; 
 
    swap(fn0, 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); 
    } 
 
  

Configuration requise

en-tête : <functional>

l'espace de noms : DST

Voir aussi

Référence

function Class