C++ 使用回呼函數的方式 和 作用。 持續更新__Jquery

來源:互聯網
上載者:User

先看兩個demo:

一.在類test1中調用函數print() ,把print()的函數指標傳遞給test1的函數指標參數

test1.h:

#include <stdio.h>#include <iostream>using namespace std;typedef void (*FUNP)();class test1{public:void fun1(FUNP p){(*p)();}};

main.cpp
#include <stdio.h>#include "test1.h"void print();int main(){test1 tet1;tet1.fun1(print);getchar();return 0;}// void (*p)()void print(){printf("hello world\n");}
// 列印 “hello world”






二.類Test1 中調用Test2的方法函數。  在類test2中包含test1對象,將test2中的函數指標傳給test1

test2.h:

#include "test1.h"

#include <iostream>using namespace std;class Test2{public:Test2(){tet1.fun1(fun2);}static void fun2(){cout<<"Test2"<<endl;}public:test1 tet1;};
test1.h:
#include <stdio.h>#include <iostream>using namespace std;typedef void (*FUNP)();class test1{public:void fun1(FUNP p){(*p)();}};
main:
#include <stdio.h>#include "test2.h"int main(){Test2 tet2; getchar();return 0;}

// 結果:列印“Test2”


附上兩個deome,搞清楚的話 回呼函數基本可以套著用了

http://download.csdn.net/my






聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.