原型:
template< class R, class F, class... Args >
constexpr /* 未指定 */ bind( F&& f, Args&&... args );
函数模板 std::bind 生成 f 的转发调用包装器。调用此包装器等价于以一些绑定到 args 的参数调用 f
#include <functional>
#include <iostream>
#include <memory>
#include <random>
void f(int n1, int n2, int n3, const int& n4, int n5)
{
std::cout << n1 << ' ' << n2 << ' ' << n3 << ' ' << n4 << ' ' << n5 << '\n';
}
int g(int n1)
{
return n1;
}
struct Foo
{
void print_sum(int n1, int n2)
{
std::cout << n1 + n2 << '\n';
}
int data = 10;
};
int main()
{
using namespace std::placeholders; // 对于 _1, _2, _3...
std::cout << "参数重排序和按引用传递:";
int n = 7;
// ( _1 与 _2 来自 std::placeholders ,并表示将来会传递给 f1 的参数)
//std::cref返回需要被包装的到对象的左值引用,返回后面n的值
auto f1 = std::bind(f, _2, 42, _1, std::cref(n), n);
n = 10;
f1(1, 2, 1001); // 1 为 _1 所绑定, 2 为 _2 所绑定,不使用 1001
// 进行到 f(2, 42, 1, n, 7) 的调用
std::cout << "嵌套 bind 子表达式共享占位符:";
auto f2 = std::bind(f, _3, std::bind(g, _3), _3, 4, 5);
f2(10, 11, 12); // 进行到 f(12, g(12), 12, 4, 5); 的调用
std::cout << "绑定指向成员函数指针:";
Foo foo;
auto f3 = std::bind(&Foo::print_sum, &foo, 95, _1);
f3(5);
std::cout << "绑定是指向成员函数指针的 mem_fn:";
auto ptr_to_print_sum = std::mem_fn(&Foo::print_sum);
auto f4 = std::bind(ptr_to_print_sum, &foo, 95, _1);
f4(5);
std::cout << "绑定指向数据成员指针:";
auto f5 = std::bind(&Foo::data, _1);
std::cout << f5(foo) << '\n';
std::cout << "绑定是指向数据成员指针的 mem_fn:";
auto ptr_to_data = std::mem_fn(&Foo::data);
auto f6 = std::bind(ptr_to_data, _1);
std::cout << f6(foo) << '\n';
std::cout << "使用智能指针调用被引用对象的成员:";
std::cout << f6(std::make_shared<Foo>(foo)) << '\n'
<< f6(std::make_unique<Foo>(foo)) << '\n';
}
输出:
参数重排序和按引用传递:2 42 1 10 7
嵌套 bind 子表达式共享占位符:12 12 12 4 5
绑定指向成员函数指针:100
绑定是指向成员函数指针的 mem_fn:100
绑定指向数据成员指针:10
绑定是指向数据成员指针的 mem_fn:10
使用智能指针调用被引用对象的成员:10
10
类模板 std::function 是通用多态函数包装器。 std::function 的实例能存储、复制及调用任何可复制构造的可调用目标——函数(通过其指针)、 lambda 表达式、 bind 表达式或其他函数对象,还有指向成员函数指针和指向数据成员指针。
存储的可调用对象被称为 std::function 的目标。若 std::function 不含目标,则称它为空。调用空 std::function 的目标导致抛出 std::bad_function_call 异常。
typedef void(*ptr)(int,int)// 这里的ptr就是一个函数指针
|
|
|
V
std::function<void(int ,int)> func;
#include <functional>
template< class R, class... Args >
class function<R(Args...)>;
从各种资源构造 std::function
销毁 std::function 对象。若 std::function 非空,则亦销毁其目标。
赋值新目标给 std::function 。
template< class F >
function& operator=( std::reference_wrapper<F> f ) noexcept;
交换 *this 与 other 存储的可调用对象。
检查是否包含了有效的目标
调用其目标
返回存储的函数的类型。
返回指向存储的可调用函数目标的指针。
#include <functional>
#include <iostream>
struct Foo {
Foo(int num) : num_(num) {}
void print_add(int i) const { std::cout << num_+i << '\n'; }
int num_;
};
void print_num(int i)
{
std::cout << i << '\n';
}
struct PrintNum {
void operator()(int i) const
{
std::cout << i << '\n';
}
};
int main()
{
// 存储自由函数
std::function<void(int)> f_display = print_num;
f_display(-9);//-9
// 存储 lambda
std::function<void()> f_display_42 = []() { print_num(42); };
f_display_42();//42
// 存储到 std::bind 调用的结果
std::function<void()> f_display_31337 = std::bind(print_num, 31337);
f_display_31337();//31337
// 存储到成员函数的调用
std::function<void(const Foo&, int)> f_add_display = &Foo::print_add;
const Foo foo(314159);//创建FOO对象
f_add_display(foo, 1);//314160
f_add_display(314159, 1);//314160
// 存储到数据成员访问器的调用
std::function<int(Foo const&)> f_num = &Foo::num_;
std::cout << "num_: " << f_num(foo) << '\n'; //num_: 314159
// 存储到成员函数及对象的调用
using std::placeholders::_1;
std::function<void(int)> f_add_display2 = std::bind( &Foo::print_add, foo, _1 );
f_add_display2(2);//314161
// 存储到成员函数和对象指针的调用
std::function<void(int)> f_add_display3 = std::bind( &Foo::print_add, &foo, _1 );
f_add_display3(3);//314162
// 存储到函数对象(仿函数)的调用
std::function<void(int)> f_display_obj = PrintNum();
f_display_obj(18);//18
//递归使用
std::function<int(int)> factorial = [&](int i) -> int{
if(i == 1)return 1;
return i * factorial(i - 1);
};
for (int i{5}; i != 8; ++i) { std::cout << i << "! = " << factorial(i) << "; "; }
}
其他:
#include <functional>
#include <iostream>
#include <string>
int f(int, int) { return 1; }
int g(int, int) { return 2; }
void test(std::function<int(int, int)> const& arg)
{
int (*const* ptr)(int, int) = arg.target<int(*)(int, int)>();
if (ptr && *ptr == f)
std::cout << "it is the function f\n";
if (ptr && *ptr == g)
std::cout << "it is the function g\n";
}
int main()
{
test(std::function<int(int, int)>(f));
test(std::function<int(int, int)>(g));
std::function<int(int,int)> fn1(f),
fn2([](int a , int b) {return a+b;});
std::cout << fn1.target_type().name() << '\n'
<< fn2.target_type().name() << '\n';
}
输出结果:
it is the function f
it is the function g
PFiiiE
Z4mainEUliiE_
#include <functional>
int func(double) { return 0; }
int main() {
std::function f{func}; // 指引 #1 推导 function<int(double)>
int i = 5;
std::function g = [&](double) { return i; }; // 指引 #2 推导 function<int(double)>
}