码迷,mamicode.com
首页 > 编程语言 > 详细

c++回调函数

时间:2017-10-30 17:06:38      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:class   c++   blog   auto   pre   ret   xxx   color   call   

C++使用回调函数的一种方法如下:

Example::Example() {}

Example::~Example() {}

int Example::Start() {
    auto callback = [this](const int type)->int {
        this->Callback(type);
        return 0;
    };

    xxx.ReginsterCallback(callback);
    return 0;
}

int Example::Callback(const int type) {
    /* do sth */
}

int main(int argc, char* argv) {
    Example ex;
    ex.Start();
}

 

c++回调函数

标签:class   c++   blog   auto   pre   ret   xxx   color   call   

原文地址:http://www.cnblogs.com/cfox/p/7754856.html

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