weidagang2046的专栏

物格而后知致
随笔 - 8, 文章 - 409, 评论 - 101, 引用 - 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 阅读(432) 评论(0)  编辑  收藏 所属分类: C/C++


只有注册用户登录后才能发表评论。


网站导航: