欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C语言实现简单的定时器

程序员文章站 2022-06-22 11:14:30
本文实例为大家分享了c语言实现简单的定时器的具体代码,供大家参考,具体内容如下1.代码分析2.代码#include #include #inc...

本文实例为大家分享了c语言实现简单的定时器的具体代码,供大家参考,具体内容如下

1.代码分析

C语言实现简单的定时器

2.代码

#include <stdio.h>
#include <time.h>
#include <conio.h>

#ifndef clocks_per_sec
#define clocks_per_sec 1000
#endif

int main( void )
{
 clock_t start;
 long count = 1;
 start = clock();
 while(1)
 {
 if((clock() - start) == clocks_per_sec)
 {
 printf("%ld\n",count++);
 start = clock();
 //break;
 }
 }
 getch();
}

3. 代码抽象出一个定时器函数 void timer(long time)

void timer(long time){

 clock_t start;
 long count = 1;
 start = clock();
 while(1)
 {
 if((clock() - start) != (time*clocks_per_sec))
 {
 //时间没有到,啥也不做,空循环
 }else {
   //时间到了退出循环
   // printf("%s","hello");
   break;
  }
  
 }
}

完整代码

#include <stdio.h>
#include <time.h>
#include <conio.h>

#ifndef clocks_per_sec
#define clocks_per_sec 1000
#endif
/**
 * time 的单位为s
 */
void timer(long time){

 clock_t start;
 long count = 1;
 start = clock();
 while(1)
 {
 if((clock() - start) != (time*clocks_per_sec))
 {
 //时间没有到,啥也不做,空循环
 }else {
   //时间到了退出循环
   // printf("%s","hello");
   break;
  }
  
 }
}
int main( void )
{
 
 for(int i=0;i<10;i++){
  timer(1);
  printf("%d\n",i);
 }
 getch();
}

C语言实现简单的定时器

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

相关标签: C语言 定时器