C語言擷取Linux系統精確時間

來源:互聯網
上載者:User

標籤: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系統精確時間

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.