c语言中怎么设置计时器?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言中怎么设置计时器?相关的知识,希望对你有一定的参考价值。
c语言中设置计时器怎么编写源代码?例如:每格5秒输出字符a。
没看懂啊,能不能写的完整一点?多谢!
#include <iostream>
#include <time.h>
using namespace std;
int main()
clock_t start = clock();
//do some process here
clock_t end = (clock() - start)/CLOCKS_PER_SEC;
cout<<"time comsumption is "<<end<<endl;
扩展资料
使用linux的系统设置计时器
#include <sys/time.h>
int main()
timeval starttime,endtime;
gettimeofday(&starttime,0);
//do some process here
gettimeofday(&endtime,0);
double timeuse = 1000000*(endtime.tv_sec - starttime.tv_sec) + endtime.tv_usec - startime.tv_usec;
timeuse /=1000;//除以1000则进行毫秒计时,如果除以1000000则进行秒级别计时,如果除以1则进行微妙级别计时
timeval的结构如下:
strut timeval
long tv_sec; /* 秒数 */
long tv_usec; /* 微秒数 */
;
参考技术A C语言计时可以用很多方法。1. 如果是想使用秒级别的技术,可用使用C语言库<time.h>自带的clock()进行计时。如:
#include <iostream>
#include <time.h>
using namespace std;
int main()
clock_t start = clock();
//do some process here
clock_t end = (clock() - start)/CLOCKS_PER_SEC;
cout<<"time comsumption is "<<end<<endl;
以上方法只能用于秒级别的计时。
2.如果想使用毫秒级别的计时可以使用2种方法。一种是使用linux的系统库<sys/time.h>,一种是使用CUDA的cutil的库。
A. 如果使用linux的系统库,则可以使用如下方法:
#include <sys/time.h>
int main()
timeval starttime,endtime;
gettimeofday(&starttime,0);
//do some process here
gettimeofday(&endtime,0);
double timeuse = 1000000*(endtime.tv_sec - starttime.tv_sec) + endtime.tv_usec - startime.tv_usec;
timeuse /=1000;//除以1000则进行毫秒计时,如果除以1000000则进行秒级别计时,如果除以1则进行微妙级别计时
timeval的结构如下:
strut timeval
long tv_sec; /* 秒数 */
long tv_usec; /* 微秒数 */
;
上述方法可以进行微妙级别的计时,当然也可以进行毫秒和秒的计时。
B. 如果可以使用CUDA的话,则可以使用CUDA的sdk里面的cutil库里面的函数。
#include <cutil.h>
int main()
unsigned int timer = 0;
cutCreatTimer(&timer);//创建计时器
cutStartTimer(&timer);//开始计时
// do some process here
cutStopTimer(&timer);//停止计时
cout<<"time is "<<cutGetTimerValue(&timer)<<endl;//打印时间
参考技术B //无窗口计时器
VOID CALLBACK TimerProc(HWND hwnd, UINT uMsg,UINT_PTR idEvent,DWORD dwTime)
//定时调用
SetTimer(NULL,NULL,20,TimerProc);//20是时间的间隔 参考技术C while(true)
Sleep(1000)
cout<<"a"<<endl;
附加说明一下:以上只是示例程序,由于WIN32程序是信息驱动,象VC里面的TIMER,建立在WINDOWS消息循环上的,在C语言设置定时器,不是十分好做.
如上面可以这样写:
int t1,t2;
t1=getcurrenttime();
while(true)
GetTime(&t2);
if(t1-t2>=5)
处理代码
cout<<"a"<<endl;
t1=t2;
C语言中,用于设置中断、中断信号的函数都有哪些?怎么设置一个发送中断信号(自己定义的)的函数?
函数要比较新的,dos时代的函数最好不要了。如何设置一个到了一定时间间隔自动发送中断信号在函数?不要alarm(),要精度高一点的。
//分数就这么点了,能帮的前辈尽量帮帮我……
分别为外部中断0、定时器0、外部中断1、定时器1及串行中断。
C51单片机的中断使用时,主要是通过中断服务号来决定的。
如你定义一个中断服务函数:
void KEY(void) intterrupt 0
当外部中断0申请中断时
会自动根据interrupt后面的0,找到上面定义的这个中断服务函数。
对于其他四个中断源,其对应的中断号分别为1、2 、3、4 参考技术A 设置一个定时器,然后安装信号处理函数。
以下是一个用定时器写的程序
#include<stdio.h>
#include<time.h>
#include<sys/time.h>
#include<stdlib.h>
#include<signal.h>
static int count=0;
void set_timer()//设置定时器
struct itimerval itv;
itv.it_value.tv_sec=3;
itv.it_value.tv_usec=0;
itv.it_interval.tv_sec=2;
itv.it_interval.tv_usec=0;
setitimer(ITIMER_REAL,&itv,NULL);//启动定时器
void signal_handler(int m)//信号处理函数
count++;
//printf("%d\n",count);
int main()
signal(SIGALRM,signal_handler);//安装信号
set_timer();
while(count<10);
exit(0);
追问
谢谢回答,函数写的很好。为什么我没有学到过这些结构体呢?这些结构体很有用,siganal.h.sys/time 我也知道,可就是这些可以用的结构、函数不知道。请问哪本书讲这些常用函数比较多呢?不要纯列举函数的,要讲原理的。没学过单片机,谢谢!
追答推荐UNIX环境高级编程,linux程序设计
追问确实好书
怎么这个函数在时间到了之后显示了个alarm clock就把函数结束了呢?不应该重新开始计时吗?
本回答被提问者和网友采纳以上是关于c语言中怎么设置计时器?的主要内容,如果未能解决你的问题,请参考以下文章