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

回调函数理解实例

时间:2017-05-24 17:08:06      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:ica   log   time   回调   理解   pre   back   call   fine   

// callback.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <stdio.h>
 
void printWelcome(int len)
{
       printf("欢迎欢迎 -- %d\n", len);
}
 
void printGoodbye(int len)
{
       printf("送客送客 -- %d\n", len);
}
 
void callback(int times, void (* print)(int))
{
       int i;
       for (i = 0; i < times; ++i)
       {
              print(i);
       }
       printf("\n我不知道你是迎客还是送客!\n\n");
}
void main(void)
{
       callback(10, printWelcome);
       callback(10, printGoodbye);
       printWelcome(5);
       getchar();
}

乱翻的时候看到这段代码,对于理解回调函数十分有效。

不扯系统函数,不扯dll,例子中callback中调用了printWelcome函数。这就是回调函数。不要想的太深,等遇到实际情况的时候你想想例子,原来就是这么回事。

回调函数理解实例

标签:ica   log   time   回调   理解   pre   back   call   fine   

原文地址:http://www.cnblogs.com/lcamry/p/6899585.html

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