本篇内容介绍了“linux有没有获取时间的函数”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

linux有获取时间的函数。linux常用的时间函数:1、time()函数,获取当前的时间;2、“localtime_r”()和localtime()函数,取得当地目前时间和日期;3、gettimeofday()函数,也可以获取当前的时间。

本教程操作环境:linux7.3系统、Dell G3电脑。

linux获取时间的函数

常用的时间函数介绍:

  1. time() 函数获取当前时间

    #include<time.h>
    time_ttime(time_t*t);
    
    /*此函数会返回从公元1970年1月1日的UTC时间从0时0分0秒算起到现在所经过的秒数。
    *如果t并非空指针的话,此函数也会将返回值存到t指针所指的内存。
    */

    实例代码:

    #include<stdio.h>
    #include<string.h>
    #include<time.h>
    
    intmain()
    {
    time_tsec;
    
    sec=time((time_t*)NULL);
    printf("%d\n",(int)sec);
    
    return0;
    }

    运行结果:

    linux有没有获取时间的函数

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

    #include<time.h>
    
    structtm*localtime(consttime_t*timep);
    structtm*localtime_r(consttime_t*timep,structtm*result);
    
    /*该函数将有time函数获取的值timep转换真实世界所使用的时间日期表示方法,然后将结果由结构tm返回*/
    
    /**需要注意的是localtime函数可以将时间转换本地时间,但是localtime函数不是线程安全的。
    多线程应用里面,应该用localtime_r函数替代localtime函数,因为localtime_r是线程安全的**/

    实例代码:

    #include<stdio.h>
    #include<string.h>
    #include<time.h>
    
    intmain()
    {
    time_ttmp;
    structtm*timp;
    
    time(&tmp);
    timp=localtime(&tmp);
    
    printf("%d-%d-%d%d:%d:%d\n",(1900+timp->tm_year),(1+timp->tm_mon),timp->tm_mday,
    (timp->tm_hour),timp->tm_min,timp->tm_sec);
    
    return0;
    }

    运行结果:

    linux有没有获取时间的函数

  3. asctime() asctime_r() 将时间和日期以字符串格式返回

    #include<time.h>
    
    structtm*gmtime(consttime_t*timep);
    structtm*gmtime_r(consttime_t*timep,structtm*result);
    
    char*asctime(conststructtm*tm);
    char*asctime_r(conststructtm*tm,char*buf);
    
    
    /*
    *gmtime是把日期和时间转换为格林威治(GMT)时间的函数。
    *将参数time所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果由结构tm返回
    *asctime将时间以换为字符串字符串格式返回
    */

    实例代码:

    #include<stdio.h>
    #include<string.h>
    #include<time.h>
    
    intmain()
    {
    time_ttimp;
    time(&timp);
    
    printf("%s\n",asctime(gmtime(&timp)));
    
    return0;
    }

    运行结果:(asctime获取的字符串自己带有换行符)

    linux有没有获取时间的函数

  4. ctime(),ctime_r() 将时间和日期以字符串格式表示

    #include<time.h>
    char*ctime(consttime_t*timep);
    char*ctime_r(consttime_t*timep,char*buf);
    
    
    /*
    *ctime()将参数timep所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法,
    *然后将结果以字符串形态返回
    */

    实例代码:

    #include<stdio.h>
    #include<string.h>
    #include<time.h>
    
    intmain(void)
    {
    time_ttmp;
    
    time(&tmp);
    printf("%s\n",ctime(&tmp));
    
    return0;
    }

    运行结果:(ctime获取的字符串自己带有换行符)

    linux有没有获取时间的函数

  5. mktime() 将时间结构体struct tm的值转化为经过的秒数

    #include<time.h>
    time_tmktime(structtm*tm);
    
    /*
    *将时间结构体structtm的值转化为经过的秒数
    */

    实例代码 :

    #include<stdio.h>
    #include<string.h>
    #include<time.h>
    
    intmain()
    {
    time_ttmp;
    structtm*timp;
    
    time(&tmp);
    timp=localtime(&tmp);
    tmp=mktime(timp);
    
    printf("%d\n",(int)tmp);
    
    return0;
    }

    运行结果:

    linux有没有获取时间的函数

  6. gettimeofday() 获取当前时间

    #include<sys/time.h>
    
    intgettimeofday(structtimeval*tv,structtimezone*tz);
    
    structtimeval{
    time_ttv_sec;/*seconds(秒)*/
    suseconds_ttv_usec;/*microseconds(微秒)*/
    };
    structtimezone{
    inttz_minuteswest;/*minuteswestofGreenwich*/
    inttz_dsttime;/*typeofDSTcorrection*/
    };
    /*
    *gettimeofday函数获取当前时间存于tv结构体中,相应的时区信息则存于tz结构体中
    *需要注意的是tz是依赖于系统,不同的系统可能存在获取不到的可能,因此通常设置为NULL
    */

    实例代码:

    #include<stdio.h>
    #include<string.h>
    #include<sys/time.h>
    
    intmain()
    {
    structtimevaltv;
    
    gettimeofday(&tv,NULL);
    
    printf("tv_sec=%d\n",(int)tv.tv_sec);
    printf("tv_usec=%d\n",(int)tv.tv_usec);
    
    return0;
    }

    运行结果:

    linux有没有获取时间的函数

“linux有没有获取时间的函数”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

推荐内容:python有没有函数重载

点赞(52) 打赏

评论列表 共有 0 条评论

暂无评论

微信小程序

微信扫一扫体验

立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部