首页 > 代码库 > std::function与std::bind 函数指针
std::function与std::bind 函数指针
function模板类和bind模板函数,使用它们可以实现类似函数指针的功能,但却却比函数指针更加灵活,特别是函数指向类 的非静态成员函数时。
std::function可以绑定到全局函数/类静态成员函数(类静态成员函数与全局函数没有区别),如果要绑定到类的非静态成员函数,则需要使用std::bind
#include <iostream>#include <functional>using namespace std;typedef std::function<void()> fp;void g_fun(){ cout << "g_fun()" << endl;}class A{public: static void A_fun_static() { cout << "A_fun_static()" << endl; } void A_fun() { cout << "A_fun()" << endl; } void A_fun_int(int i) { cout << "A_fun_int()" << i << endl; } //非静态类成员,因为含有this指针,所以需要使用bind void init() { fp fp1 = std::bind(&A::A_fun, this); fp1(); } void init2() { typedef std::function<void(int)> fpi; //对于参数要使用占位符 std::placeholders::_1 fpi f = std::bind(&A::A_fun_int, this, std::placeholders::_1); f(5); }};int main(){ //绑定到全局函数 fp f2 = fp(&g_fun); f2(); //绑定到类静态成员函数 fp f1 = fp(&A::A_fun_static); f1(); A().init(); A().init2(); return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。