localtime()函数localtime
语法:
1 2 |
?? #include <time.h> ?? struct tm *localtime( const time_t *time ); |
功能:函数返回本地日历时间。警告!
localtime是 把从1970-1-1零点零分到当前时间系统所偏移的秒数时间转换为本地时间,而gmtime函数转换后的时间没有经过时区变换,是UTC时间 。
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <stdio.h> #include <stddef.h> #include <time.h> int main(void) { time_t timer;//time_t就是long int 类型 struct tm *tblock; timer = time(NULL); tblock = localtime(&timer); printf("Local time is: %s\n",asctime(tblock)); return 0; } |
执行结果:
Local time is: Mon Feb 16 11:29:26 2009
《localtime()函数localtime》上有1条评论
评论已关闭。