美文网首页
c++ callback

c++ callback

作者: wasdzy111 | 来源:发表于2021-08-09 14:20 被阅读0次

    include <iostream>

    void callBack(int x, int y) {
    std::cout << "x:" << x << std::endl;
    std::cout << "y:" << y << std::endl;
    return;
    }

    void handle(int y, void (*callBack)(int, int)) {

    callBack(y, y + 1);
    return;
    

    }

    int main() {
    handle(1, callBack);
    return 0;
    }

    相关文章

      网友评论

          本文标题:c++ callback

          本文链接:https://www.haomeiwen.com/subject/wqyzvltx.html