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