溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Linux時(shí)間函數(shù)有哪些

發(fā)布時(shí)間:2022-01-27 14:54:49 來(lái)源:億速云 閱讀:84 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇“Linux時(shí)間函數(shù)有哪些”文章的知識(shí)點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價(jià)值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來(lái)看看這篇“Linux時(shí)間函數(shù)有哪些”文章吧。

Linux時(shí)間函數(shù)有哪些

一、linux時(shí)間函數(shù)總結(jié)

在linux下,常用的獲取時(shí)間的函數(shù)有如下幾個(gè):

  asctime, ctime, gmtime, localtime, gettimeofday ,

mktime, asctime_r, ctime_r, gmtime_r, localtime_r

二、常用的結(jié)構(gòu)體

(1)struct tm 

  1   struct tm {
  2                int tm_sec;         /* seconds */
  3                int tm_min;         /* minutes */
  4                int tm_hour;        /* hours */
  5                int tm_mday;        /* day of the month */
  6                int tm_mon;         /* month */
  7                int tm_year;        /* year */
  8                int tm_wday;        /* day of the week */
  9                int tm_yday;        /* day in the year */
 10                int tm_isdst;       /* daylight saving time */
 11            };
 12            
 13 //int tm_sec 代表目前秒數(shù),正常范圍為0-59,但允許至61秒
 14 //int tm_min 代表目前分?jǐn)?shù),范圍0-59
 15 //int tm_hour 從午夜算起的時(shí)數(shù),范圍為0-23
 16 //int tm_mday 目前月份的日數(shù),范圍01-31
 17 //int tm_mon 代表目前月份,從一月算起,范圍從0-11
 18 //int tm_year 從1900 年算起至今的年數(shù)
 19 //int tm_wday 一星期的日數(shù),從星期一算起,范圍為0-6
 20 //int tm_yday 從今年1月1日算起至今的天數(shù),范圍為0-365
 21 //int tm_isdst 日光節(jié)約時(shí)間的旗標(biāo)

(2)struct timeval,struct timezone;

  1 struct timeval {
  2                time_t      tv_sec;     /* seconds (秒)*/
  3                suseconds_t tv_usec;    /* microseconds(微秒) */
  4            };
  5 struct timezone {
  6                int tz_minuteswest;     /* minutes west of Greenwich */
  7                int tz_dsttime;         /* type of DST correction */
  8            };
  9 int tz_minuteswest;     /* 格林威治時(shí)間往西方的時(shí)差 */
 10 int tz_dsttime;         /*  時(shí)間的修正方式*/

三、時(shí)間函數(shù)介紹:

(1)time() 函數(shù)獲取當(dāng)前時(shí)間

  1 SYNOPSIS
  2        #include  3
  4        time_t time(time_t *t);
  5
  6 DESCRIPTION
  7        time() returns the time as the number of seconds since the Epoch, 1970-01-01 00:00:00 +0000 (UTC).
  8     //此函數(shù)會(huì)返回從公元1970年1月1日的UTC時(shí)間從0時(shí)0分0秒算起到現(xiàn)在所經(jīng)過(guò)的秒數(shù)。如果t 并非空指針的話,此函數(shù)也會(huì)將返回值存到t指針?biāo)傅膬?nèi)存。
  9 RETURN VALUE
 10        On  success,  the value of time in seconds since the Epoch is returned.  On error, ((time_t) -1) is returned, and errno is
 11        set appropriately.
 12 ERRORS
 13        EFAULT t points outside your accessible address space.
 14     //成功返回秒數(shù),錯(cuò)誤則返回(time_t) -1),錯(cuò)誤原因存于errno中

eg:

  1 #include  2 #include  3 #include  4
  5 int main()
  6 {
  7     time_t seconds;
  8
  9     seconds = time((time_t *)NULL);
 10     printf("%d\n", seconds);
 11
 12     return 0;
 13 }

(2)localtime_r() localtime()取得當(dāng)?shù)啬壳皶r(shí)間和日期

函數(shù)原型如下:

 1 #include 2        
 3     struct tm *localtime(const time_t *timep);
 4     struct tm *localtime_r(const time_t *timep, struct tm *result);
 5        
 6 /*該函數(shù)將有time函數(shù)獲取的值timep轉(zhuǎn)換真實(shí)世界所使用的時(shí)間日期表示方法,然后將結(jié)果由結(jié)構(gòu)tm返回*/
 7
 8 /**需要注意的是localtime函數(shù)可以將時(shí)間轉(zhuǎn)換本地時(shí)間,但是localtime函數(shù)不是線程安全的。
 9 多線程應(yīng)用里面,應(yīng)該用localtime_r函數(shù)替代localtime函數(shù),因?yàn)閘ocaltime_r是線程安全的**/

eg:

  1 #include  2 #include  3 #include  4
  5 int main()
  6 {
  7     time_t timep;  
  8     struct tm *p;
  9    
 10     time(&timep);  
 11     p = localtime(&timep);
 12    
 13     printf("%d-%d-%d %d:%d:%d\n", (1900 + p->tm_year), ( 1 + p->tm_mon), p->tm_mday,
 14                                 (p->tm_hour + 12), p->tm_min, p->tm_sec);
 15
 16     return 0;
 17 }

(3)asctime()  asctime_r() 將時(shí)間和日期以字符串格式返回‘

函數(shù)原型如下:

  1 #include  2        
  3     struct tm *gmtime(const time_t *timep);
  4     struct tm *gmtime_r(const time_t *timep, struct tm *result);
  5        
  6     char *asctime(const struct tm *tm);
  7     char *asctime_r(const struct tm *tm, char *buf);
  8        
  9        
 10 /**gmtime是把日期和時(shí)間轉(zhuǎn)換為格林威治(GMT)時(shí)間的函數(shù)。將參數(shù)time 所指的time_t 結(jié)構(gòu)中的信息轉(zhuǎn)換成真實(shí)世界所使用的時(shí)間日期表示方法,然后將結(jié)果由結(jié)構(gòu)tm返回**/
 11        
 12 /**asctime 將時(shí)間以換為字符串字符串格式返回 **/

eg:

  1 #include  2 #include  3 #include  4  
  5 int main()
  6 {  
  7     time_t timep;  
  8     time(&timep);
  9    
 10     printf("%s\n", asctime(gmtime(&timep)));  
 11    
 12     return 0;
 13 }

(4) ctime(),ctime_r() 將時(shí)間和日期以字符串格式表示

函數(shù)原型如下:

 1 #include 2        
 3        char *ctime(const time_t *timep);
 4        char *ctime_r(const time_t *timep, char *buf);
 5        
 6 /**ctime()將參數(shù)timep所指的time_t結(jié)構(gòu)中的信息轉(zhuǎn)換成真實(shí)世界所使用的時(shí)間日期表示方法,然后將結(jié)果以字符串形態(tài)返回**/

eg:

  1 #include  2 #include  3 #include 
  4
  5 int main(void)  
  6 {  
  7     time_t timep;
  8  
  9     time(&timep);  
 10     printf("%s\n", ctime(&timep));
 11    
 12     return 0;  
 13 }

(5)mktime() 將時(shí)間結(jié)構(gòu)體struct tm的值轉(zhuǎn)化為經(jīng)過(guò)的秒數(shù)

函數(shù)原型:

 1 #include 2        
 3     time_t mktime(struct tm *tm);
 4        
 5 /**將時(shí)間結(jié)構(gòu)體struct tm的值轉(zhuǎn)化為經(jīng)過(guò)的秒數(shù)**/

eg:

  1 #include  2 #include  3 #include 
  4  
  5 int main()  
  6 {  
  7     time_t timep;  
  8     struct tm *p;  
  9
 10     time(&timep);  
 11     p = localtime(&timep);  
 12     timep = mktime(p);
 13    
 14     printf("%d\n", timep);  
 15    
 16     return 0;
 17 }

最后結(jié)果可以看出mktime轉(zhuǎn)化后的時(shí)間與time函數(shù)獲取的一樣

(6)gettimeofday() 獲取當(dāng)前時(shí)間

函數(shù)原型如下:

  1 #include  2
  3     int gettimeofday(struct timeval *tv, struct timezone *tz);
  4    
  5 struct timeval {
  6                time_t      tv_sec;     /* seconds (秒)*/
  7                suseconds_t tv_usec;    /* microseconds(微秒) */
  8            };
  9 struct timezone {
 10                int tz_minuteswest;     /* minutes west of Greenwich */
 11                int tz_dsttime;         /* type of DST correction */
 12            };
 13 //gettimeofday函數(shù)獲取當(dāng)前時(shí)間存于tv結(jié)構(gòu)體中,相應(yīng)的時(shí)區(qū)信息則存于tz結(jié)構(gòu)體中
 14 //需要注意的是tz是依賴于系統(tǒng),不同的系統(tǒng)可能存在獲取不到的可能,因此通常設(shè)置為NULL

eg:

  1 #include  2 #include  3 #include  4
  5 int main()
  6 {
  7     struct timeval tv;
  8    
  9     gettimeofday(&tv, NULL);
 10
 11     printf("tv_sec: %d\n", tv.tv_sec);
 12     printf("tv_usec: %d\n", tv.tv_usec);
 13    
 14     return 0;
 15 }

以上就是關(guān)于“Linux時(shí)間函數(shù)有哪些”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對(duì)大家有幫助,若想了解更多相關(guān)的知識(shí)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI