function::result_type

存储的可调用对象的返回类型。

typedef Ret result_type;

备注

typedef作为类型的 Ret 同义词在模板的调用签名。 您使用它确定所包装的可调用对象的返回类型。

示例

 

// std_tr1__functional__function_result_type.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::function<int (int)>::result_type val = fn1(3); 
    std::cout << "val == " << val << std::endl; 
 
    return (0); 
    } 
 
  

要求

标头: <functional>

命名空间: std

请参见

参考

function Class

function::target_type