다음을 통해 공유


reference_wrapper::operator()

래핑된 참조를 호출합니다.

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

매개 변수

  • TN
    N 번째의 형식 인수를 호출 합니다.

  • tN
    N 번째 호출 인수입니다.

설명

템플릿 멤버 연산자를 반환 합니다. INVOKE(get(), t1, t2, ..., tN).

예제

 

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

요구 사항

헤더: <functional>

네임 스페이스: std

참고 항목

참조

reference_wrapper Class

reference_wrapper::get