您好,登錄后才能下訂單哦!
這篇文章主要介紹linux中time()函數怎么用,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
time() 函數獲取當前時間
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 //此函數會返回從公元1970年1月1日的UTC時間從0時0分0秒算起到現在所經過的秒數。如果t 并非空指針的話,此函數也會將返回值存到t指針所指的內存。 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 //成功返回秒數,錯誤則返回(time_t) -1),錯誤原因存于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 }
以上是“linux中time()函數怎么用”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。