命名空间
变体
操作

std::is_bind_expression

来自 cppreference.com
< cpp‎ | utility‎ | functional
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库功能测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
函数对象
部分函数应用
(C++20)(C++23)
(C++11)
is_bind_expression
(C++11)
函数调用
(C++17)(C++23)
恒等函数对象
(C++20)
透明运算符包装器
(C++14)
(C++14)
(C++14)
(C++14)  
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)
(C++14)

旧绑定器和适配器
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)
(直到 C++17*)  
(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
(直到 C++17*)(直到 C++17*)
(直到 C++17*)(直到 C++17*)

(直到 C++17*)
(直到 C++17*)(直到 C++17*)(直到 C++17*)(直到 C++17*)
(直到 C++20*)
(直到 C++20*)
 
定义在头文件中 <functional>
template< class T >
struct is_bind_expression;
(自 C++11)

如果 T 是通过调用 std::bind 生成的类型(但不包括 std::bind_frontstd::bind_back),则此模板派生自 std::true_type。对于任何其他类型(除非用户专门化),此模板派生自 std::false_type

程序可以为 程序定义类型 T 特化此模板,以实现 UnaryTypeTrait,其基本特征为 std::true_type,以表明 T 应该被 std::bind 视为 bind 子表达式类型:当 bind 生成的函数对象被调用时,此类型的绑定参数将被作为函数对象调用,并将被传递给 bind 生成的对象的所有未绑定参数。

内容

[编辑] 辅助变量模板

template< class T >
constexpr bool is_bind_expression_v = is_bind_expression<T>::value;
(自 C++17)

继承自 std::integral_constant

成员常量

value
[静态]
true 如果 T 是由 std::bind 生成的函数对象,false 否则
(公共静态成员常量)

成员函数

operator bool
将对象转换为 bool,返回 value
(公共成员函数)
operator()
(C++14)
返回 value
(公共成员函数)

成员类型

类型 定义
value_type bool
type std::integral_constant<bool, value>

[编辑] 示例

#include <functional>
#include <iostream>
#include <type_traits>
 
struct MyBind
{
    typedef int result_type;
    int operator()(int a, int b) const { return a + b; }
};
 
namespace std
{
    template<>
    struct is_bind_expression<MyBind> : public true_type {};
}
 
int f(int n1, int n2)
{
    return n1 + n2;
}
 
int main()
{
    // as if bind(f, bind(MyBind(), _1, _2), 2)
    auto b = std::bind(f, MyBind(), 2); 
 
    std::cout << "Adding 2 to the sum of 10 and 11 gives " << b(10, 11) << '\n';
}

输出

Adding 2 to the sum of 10 and 11 gives 23

[编辑] 缺陷报告

以下更改行为的缺陷报告被追溯应用于以前发布的 C++ 标准。

DR 应用于 已发布的行为 正确的行为
LWG 2010 C++11 程序定义的专门化可能
只能派生自 std::false_type
可以派生自
std::true_type

[编辑] 另请参见

(C++11)
将一个或多个参数绑定到函数对象
(函数模板) [编辑]