文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Linux时间函数有哪些

2023-06-28 11:19

关注

这篇“Linux时间函数有哪些”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“Linux时间函数有哪些”文章吧。

Linux时间函数有哪些

一、linux时间函数总结

在linux下,常用的获取时间的函数有如下几个:

  asctime, ctime, gmtime, localtime, gettimeofday ,

mktime, asctime_r, ctime_r, gmtime_r, localtime_r

二、常用的结构体

(1)struct tm 

  1   struct tm {  2                int tm_sec;           3                int tm_min;           4                int tm_hour;          5                int tm_mday;          6                int tm_mon;           7                int tm_year;          8                int tm_wday;          9                int tm_yday;         10                int tm_isdst;        11            }; 12             13 //int tm_sec 代表目前秒数,正常范围为0-59,但允许至61秒 14 //int tm_min 代表目前分数,范围0-59 15 //int tm_hour 从午夜算起的时数,范围为0-23 16 //int tm_mday 目前月份的日数,范围01-31 17 //int tm_mon 代表目前月份,从一月算起,范围从0-11 18 //int tm_year 从1900 年算起至今的年数 19 //int tm_wday 一星期的日数,从星期一算起,范围为0-6 20 //int tm_yday 从今年1月1日算起至今的天数,范围为0-365 21 //int tm_isdst 日光节约时间的旗标

(2)struct timeval,struct timezone;

  1 struct timeval {  2                time_t      tv_sec;       3                suseconds_t tv_usec;      4            };  5 struct timezone {  6                int tz_minuteswest;       7                int tz_dsttime;           8            };  9 int tz_minuteswest;      10 int tz_dsttime;         

三、时间函数介绍:

(1)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 }

(2)localtime_r() localtime()取得当地目前时间和日期

函数原型如下:

 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  7 8 

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() 将时间和日期以字符串格式返回‘

函数原型如下:

  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  11         12 

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() 将时间和日期以字符串格式表示

函数原型如下:

 1 #include 2         3        char *ctime(const time_t *timep); 4        char *ctime_r(const time_t *timep, char *buf); 5         6 

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() 将时间结构体struct tm的值转化为经过的秒数

函数原型:

 1 #include 2         3     time_t mktime(struct tm *tm); 4         5 

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 }

最后结果可以看出mktime转化后的时间与time函数获取的一样

(6)gettimeofday() 获取当前时间

函数原型如下:

  1 #include  2  3     int gettimeofday(struct timeval *tv, struct timezone *tz);  4      5 struct timeval {  6                time_t      tv_sec;       7                suseconds_t tv_usec;      8            };  9 struct timezone { 10                int tz_minuteswest;      11                int tz_dsttime;          12            }; 13 //gettimeofday函数获取当前时间存于tv结构体中,相应的时区信息则存于tz结构体中 14 //需要注意的是tz是依赖于系统,不同的系统可能存在获取不到的可能,因此通常设置为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 }

以上就是关于“Linux时间函数有哪些”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助,若想了解更多相关的知识内容,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-人工智能
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯