reference_wrapper::operator()
Chiama il riferimento di cui è stato eseguito il wrapping.
template<class T1, class T2, ..., class TN>
typename result_of<T(T1, T2, ..., TN)>::type
operator()(T1& t1, T2& t2, ..., TN& tN);
Parametri
TN
Il tipo dell'no argomento di chiamata.tN
l'ennesimo argomento di chiamata.
Note
L'operatore del membro del modello restituisce INVOKE(get(), t1, t2, ..., tN).
Esempio
// std_tr1__functional__reference_wrapper_operator_call.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
std::reference_wrapper<int (int)> rwi(neg);
std::cout << "rwi(3) = " << rwi(3) << std::endl;
return (0);
}
Requisiti
intestazione: <functional>
Spazio dei nomi: deviazione standard