function::operator()

调用可调用的对象。

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

参数

  • TN
    类型的第n调用参数。

  • tN
    第n调用参数。

备注

成员函数返回 INVOKE(fn, t1, t2, ..., tN, Ret),fn 是在 *this存储的目标对象。 您使用它来调用包装可调用的对象。

示例

 

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

要求

标头: <functional>

命名空间: std

请参见

参考

function Class

function::target