在程序当中,我们经常要输出系统当前的时间,比如我们使用date命令的输出结果.这个时候我们可以使用下面两个函数:
#include
time_t time(time_t *tloc)
char *ctime(const time_t *clock)
time函数返回从1970年1月1日0点以来的秒数.存储在time_t结构之中.不过这个函数的返回值对于我们来说没有什么实际意义.这个时候我们使用第二个函数将秒数转化为字符串. 这个函数的返回类型是固定的:一个可能值为.Thu Dec7 14:58:59 2000 这个字符串的长度是固定的为26.
2.时间的测量
有时候我们要计算程序执行的时间.比如我们要对算法进行时间分析.这个时候可以使用下面这个函数. #include int gettimeofday(struct timeval *tv,struct timezone *tz)strut timeval { long tv_sec/* 秒数 */ long tv_usec/* 微秒数 */ }gettimeofday将时间保存在结构tv之中.tz一般我们使用NULL来代替. #include #include #include void function() { unsigned int i,jdouble yfor(i=0i<1000i++) for(j=0j<1000j++) y=sin((double)i)} main() { struct timeval tpstart,tpendfloat timeusegettimeofday(&tpstart,NULL)function()gettimeofday(&tpend,NULL)timeuse=1000000*(tpend.tv_sec-tpstart.tv_sec)+ tpend.tv_usec-tpstart.tv_usectimeuse/=1000000printf("Used Time:%f\n",timeuse)exit(0)}
这个程序输出函数的执行时间,我们可以使用这个来进行系统性能的测试,或者是函数算法的效率分析.在我机器上的一个输出结果是: Used Time:0.556070
你是指延迟函数还是定时调用,比如到11:12:13秒执行某个函数?
如果是延时函数用
usleep(usec) // 微妙sleep(sec) // 秒
如果是定时执行的话,你只能开个线程或while,每隔1s判断下当前系统时间,
struct tm *ptmlong ts
int y,m,d,h,n,s
ts = time(NULL)
ptm = localtime(&ts)
y = ptm-> tm_year+1900 //年
m = ptm-> tm_mon+1 //月
d = ptm-> tm_mday //日
h = ptm-> tm_hour //时
n = ptm-> tm_min //分
s = ptm-> tm_sec //秒
照着上面的格式组成字符串进行判断,到点了就执行就可以了
char *strptime(const char *restrict buf, const char *restrict format, struct tm *restrict tm)buf指向一个字符串格式的时间,函数将这个时间用format表示的格式解析,存放到tm中去
例子:
strptime("6 Dec 2001 12:33:45", "%d %b %Y %H:%M:%S", &tm)
返回值:
解析正确返回最后解析字符的下一个字符的地址,失败返回NULL
参考
http://pubs.opengroup.org/onlinepubs/009695399/functions/strptime.html
看你的写法,是你理解错了.
tm中的年是时间与格林尼治时间的差表示的
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)