首页 > 其他 > 详细

std::function与std::bind 函数指针

时间:2014-08-04 13:51:07      阅读:347      评论:0      收藏:0      [点我收藏+]

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; }

 

std::function与std::bind 函数指针,布布扣,bubuko.com

std::function与std::bind 函数指针

原文:http://www.cnblogs.com/as3lib/p/3889747.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!