std::is_bind_expression
来自cppreference.com
< cpp | utility | functional
在标头 <functional> 定义
|
||
template< class T > struct is_bind_expression; |
(C++11 起) | |
如果 T
是调用 std::bind(注意这不包括 std::bind_front
和 std::bind_back
)产生的类型,那么此模板会从 std::true_type 派生。对于任何其他类型,此模板(在没有用户特化时)会从 std::false_type 派生。
此模板可对用户定义类型 T
特化,以基特征 std::true_type 实现一元类型特性 (UnaryTypeTrait) ,指示 T
应被处理成如同它是 bind 子表达式的类型:调用 bind 生成的函数对象时,此类型的被绑定参数将作为函数对象调用,且将被给予传递给 bind 生成对象的所有未绑定参数。
辅助变量模板
template< class T > inline constexpr bool is_bind_expression_v = is_bind_expression<T>::value; |
(C++17 起) | |
继承自 std::integral_constant
成员常量
value [静态] |
如果 T 是 std::bind 生成的函数对象那么是 true,否则是 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() { // 如同 bind(f, bind(MyBind(), _1, _2), 2) auto b = std::bind(f, MyBind(), 2); std::cout << "10 与 11 的和加上 2 得到 " << b(10, 11) << '\n'; }
输出:
10 与 11 的和加上 2 得到 23
Defect reports
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 2010 | C++11 | 用户定义特化只能从 std::false_type 派生 | 可以从 std::true_type 派生 |
参阅
(C++11) |
绑定一或多个实参到函数对象 (函数模板) |