Udostępnij za pośrednictwem


reference_wrapper::operator()

Zwraca odwołanie zawinięty.

template<class T1, class T2, ..., class TN>
    typename result_of<T(T1, T2, ..., TN)>::type
    operator()(T1& t1, T2& t2, ..., TN& tN);

Parametry

  • TN
    Typ arytmetyczny wywoływać argument.

  • tN
    Wywołanie n-ty argument.

Uwagi

Szablon Członkowskich operator zwraca INVOKE(get(), t1, t2, ..., tN).

Przykład

 

// 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); 
    } 
 
  

Wymagania

Nagłówek: <functional>

Obszar nazw: std

Zobacz też

Informacje

reference_wrapper Class

reference_wrapper::get