標籤:min timezone strcpy 最大 get std turn gre cal
gettimeofday()函數的使用方法
1.函數原型
#include <sys/time.h>
int gettimeofday(struct timeval *tv, struct timezone *tz);
2.說明
gettimeofday()會把目前的時間用tv 結構體返回,當地時區的資訊則放到tz所指的結構中
3.結構體
struct timeval{
long tv_sec;/*秒*/
long tv_usec;/*微妙*/
};
struct timezone{
int tz_minuteswest; /*和greenwich 時間差了多少分鐘*/
int tz_dsttime; /*DST的校正*/
}
#include <stdio.h>#include <time.h>#include <sys/time.h>#include <string.h>#define SIZE_OF_DATETIME 20void sysUsecTime(char *pTime){ struct timeval tv; struct timezone tz; int i=0; struct tm *p; char sys_time[SIZE_OF_DATETIME+1]=""; gettimeofday(&tv, &tz); p = localtime(&tv.tv_sec); sprintf(sys_time,"%d%d%d%d%d%d%ld",1900+p->tm_year, 1+p->tm_mon, p->tm_mday, p->tm_hour, p->tm_min, p->tm_sec, tv.tv_usec); printf("strlen(sys_time)=[%d]\n",strlen(sys_time)); printf("sys_time=[%s]\n",sys_time); /* 時間最大長度為: 年 4位、 月 2位 、日 2位 、時 2位 、分 2位 、秒 2位 毫秒 6位 = 20位 */ /* 對不夠長度的末尾補0 */ for ( i=strlen(sys_time);i<SIZE_OF_DATETIME;i++) { sys_time[i]=‘0‘; } sys_time[SIZE_OF_DATETIME]=‘\0‘; strcpy(pTime,sys_time);}int main(void){ char strusecTime[SIZE_OF_DATETIME+1]; sysUsecTime(strusecTime); printf("%s\n",strusecTime); return 0;}
C語言擷取Linux系統精確時間