is_bind_expression 类

测试,如果调用生成的 bind类型。

template<class Ty>
    struct is_bind_expression {
    static const bool value;
    };

备注

常数值 value 为 True,则类型是 Ty 调用的返回类型为 bind,否则为 false。

示例

 

// std_tr1__functional__is_bind_expression.cpp 
// compile with: /EHsc 
#include <functional> 
#include <iostream> 
 
void square(double x) 
    { 
    std::cout << x << "^2 == " << x * x << std::endl; 
    } 
 
template<class Expr> 
    void test_for_bind(const Expr&) 
    { 
    std::cout << std::is_bind_expression<Expr>::value << std::endl; 
    } 
 
int main() 
    { 
    test_for_bind(3.0 * 3.0); 
    test_for_bind(std::bind(square, 3)); 
 
    return (0); 
    } 
 
  

要求

标头: <起作用的>

命名空间: std

请参见

参考

bind 函数