码迷,mamicode.com
首页 > 其他好文 > 详细

boost实现回调调函

时间:2017-09-29 11:07:02      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:bin   insert   使用   public   type   map   bind   nbsp   函数   

class A

{

  public:

    A();

    ~A();

  int funA();

}

typedef std::fun(int()) CallFun;

//绑定回调函数

CallFun fun1 = boost::bind(&A::funA,&fun);

//使用

int i = fun1();

/*如果是回调群,可以使用map绑定*/

map.insert(make_pair(1,boost::bind(&A::funA,&fun)));

CallFun fun = map[1];

int i = fun ();

 

boost实现回调调函

标签:bin   insert   使用   public   type   map   bind   nbsp   函数   

原文地址:http://www.cnblogs.com/huyupei/p/7609854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!