码迷,mamicode.com
首页 > 其他好文 > 详细

函数指针与回调函数

时间:2016-02-12 18:40:09      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 #include<iostream>
 2 using namespace std;
 3 
 4 void show(int a)
 5 {
 6     cout << a <<"....";
 7 }
 8 
 9 int add(int a, int b)
10 {
11     return a + b;
12 }
13 int sub(int a, int b)
14 {
15     return a - b;
16 }
17 void  func_test(int(*p)(int, int), int a, int b)    //回调函数
18 {
19     cout<<p(a, b)<<endl;
20 }
21 
22 int main()
23 {
24     show(3);
25     void(*p)(int);    //函数指针
26     p = show;    //show函数名是地址
27     p(4);
28 
29     func_test(add,4,5);
30     func_test(sub, 4, 5);
31 
32     cout<<"hello"<<endl;
33     system("pause");
34     return 0;
35 }

 

函数指针与回调函数

标签:

原文地址:http://www.cnblogs.com/linst/p/5187170.html

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