is_bind_expression 类

测试通过调用 bind 是否生成类型。

语法

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

备注

如果类型 Ty 是调用 bind 返回的类型,则常量成员 value 为 true,否则为 false。

示例

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