Partager via


function::operator()

Appelle un objet appelé.

result_type operator()(T1 t1, T2 t2, ..., TN tN);

Paramètres

  • TN
    Le type de nth argument d'appel.

  • tN
    Le nième argument d'appel.

Notes

La fonction membre retourne INVOKE(fn, t1, t2, ..., tN, Ret), où fn est l'objet cible stocké dans *this.Vous l'utilisez pour appeler l'objet appelé encapsulé.

Exemple

 

// std_tr1__functional__function_operator_call.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
int neg(int val) 
    { 
    return (-val); 
    } 
 
int main() 
    { 
    std::function<int (int)> fn1(neg); 
    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

function::target