weidagang2046的专栏

物格而后知致
随笔 - 8, 文章 - 409, 评论 - 57, 引用 - 0
数据加载中……

Use Functor for Callbacks in C++

Use Functor for Callbacks in C++
Using the callback function in C is pretty straightforward, but in C++ it becomes little tricky.

If you want to use a member function as a callback function, then the member function needs to be associated with an object of the class before it can be called. In this case, you can use functor.

Suppose you need to use the member function get() of the class base as a callback function


class base

{
public:
	int get ()
	{ return 7;}
};
Then, you need to define a functor:

class CallbackFunctor
{


public: functor(const base& b):m_base(b) {} int operator() () { return m_base.get(); }
private:
         base m_base; };
Now you can use an object of CallbackFunctor as a callback function as follows.

Define the function that needs a callback to take an argument of type CallbackFunctor:


void call (CallbackFunctor& f)
{
	cout << f() << endl;
}


int main ()
{
	base b;
	functor f(b);
	call(f);
}

posted on 2006-01-21 15:45 weidagang2046 阅读(92) 评论(0)  编辑  收藏 所属分类: C/C++




标题  
姓名  
主页
验证码 *  
内容(请不要发表任何与政治相关的内容)  
  登录  使用高级评论  新用户注册  返回页首  恢复上次提交      
 
 
相关链接:
网站导航: