定时器的简单实现即回调函数的运用



这两天在 研究回调函数就想实现简单的定时器,以下是鄙人的程序望指教。

#include <iostream>
#include <ctime>
using namespace std;

#define MAXNUM 256

typedef void (*timerProcessFunc)(void*);

typedef struct
{
 unsigned int id;
 int timeout;  //毫秒
}MyTimer;

static MyTimer timerList[MAXNUM] = {0};

int initTimer(MyTimer* timer, int timeout)
{
 if(!timer || timeout < 0) return false;
 timer->timeout = timeout;
    for(int i = 0; i < MAXNUM; i++)
 {
  if(timerList[i].id == 0)
  {
   timer->id = i;
   timerList[i] = *timer;
   return i;
  }
 }
 return -1;
}

void timerProcess(void* userPara)  //回调函数
{
 cout << "定时了" << *(double*)userPara << "毫秒" << endl;
}

void startTimer(int timerID, timerProcessFunc timerapp)
{
 clock_t start,finish;
    double totaltime;
    start = clock();

 /**********计时开始*****************/
 while(1)
 {
  finish = clock();
  totaltime = (double)(finish-start);
  if(totaltime >= timerList[timerID].timeout)
  {
   timerapp(&totaltime);
   break;
  }
 }
   /********************************/
}

void killTimer(int timerID)
{
 timerList[timerID].id = 0;
 timerList[timerID].timeout = 0;
}

int main()
{
 MyTimer t;
 int id;
 if((id = initTimer(&t, 10000)) != -1)
  startTimer(id, timerProcess);
 return 0;
}

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值