C语言实现简单的定时器

时间:2021-05-20

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

1.代码分析

2.代码

#include <stdio.h>#include <time.h>#include <conio.h>#ifndef CLOCKS_PER_SEC#define CLOCKS_PER_SEC 1000#endifint 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();}

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

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章