今天就跟大家聊聊有关C++中怎么实现回调函数,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
C++回调函数代码示例:
#include < string>
#include < iostream>
#include < boost/function.hpp>
using namespace std;
using namespace boost;
class Test
{
public:
Test(){};
virtual ~Test(){};
void Handle(string& s, unsigned int lines)
{
for(int i=0; i< lines; i++)
{
cout < < s < < endl;
}
};
};
template < class T>
static void CallBack(T& t, boost::function< void
(T*, string&, unsigned int)> f)
{
string s("test");
f(&t, s, 3);
};
int main()
{
Test test;
CallBack< Test>(test, &Test::Handle);
return 0;
}
看完上述内容,你们对C++中怎么实现回调函数有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注编程网行业资讯频道,感谢大家的支持。