Linux中常用的获取时间函数有哪些,怎么用
Admin 2022-07-20 群英技术资讯 956 次浏览
这篇文章主要介绍“Linux中常用的获取时间函数有哪些,怎么用”的相关知识,下面会通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“Linux中常用的获取时间函数有哪些,怎么用”文章能帮助大家解决问题。linux有获取时间的函数。linux常用的时间函数:1、time()函数,获取当前的时间;2、“localtime_r”()和localtime()函数,取得当地目前时间和日期;3、gettimeofday()函数,也可以获取当前的时间。

本教程操作环境:linux7.3系统、Dell G3电脑。
常用的时间函数介绍:
#include <time.h> time_t time(time_t *t); /* 此函数会返回从公元1970年1月1日的UTC时间从0时0分0秒算起到现在所经过的秒数。 * 如果t 并非空指针的话,此函数也会将返回值存到t指针所指的内存。 */
实例代码:
#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
time_t sec;
sec = time((time_t *)NULL);
printf("%d\n", (int)sec);
return 0;
}运行结果:

localtime_r() localtime()取得当地目前时间和日期
#include <time.h>
struct tm *localtime(const time_t *timep);
struct tm *localtime_r(const time_t *timep, struct tm *result);
/*该函数将有time函数获取的值timep转换真实世界所使用的时间日期表示方法,然后将结果由结构tm返回*/
/**需要注意的是localtime函数可以将时间转换本地时间,但是localtime函数不是线程安全的。
多线程应用里面,应该用localtime_r函数替代localtime函数,因为localtime_r是线程安全的**/实例代码:
#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
time_t tmp;
struct tm *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);
return 0;
}运行结果:

asctime() asctime_r() 将时间和日期以字符串格式返回
#include <time.h>
struct tm *gmtime(const time_t *timep);
struct tm *gmtime_r(const time_t *timep, struct tm *result);
char *asctime(const struct tm *tm);
char *asctime_r(const struct tm *tm, char *buf);
/*
*gmtime是把日期和时间转换为格林威治(GMT)时间的函数。
*将参数time 所指的time_t 结构中的信息转换成真实世界所使用的时间日期表示方法,然后将结果由结构tm返回
*asctime 将时间以换为字符串字符串格式返回
*/实例代码:
#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
time_t timp;
time(&timp);
printf("%s\n", asctime(gmtime(&timp)));
return 0;
}运行结果:(asctime获取的字符串自己带有换行符)

ctime(),ctime_r() 将时间和日期以字符串格式表示
#include <time.h> char *ctime(const time_t *timep); char *ctime_r(const time_t *timep, char *buf); /* *ctime()将参数timep所指的time_t结构中的信息转换成真实世界所使用的时间日期表示方法, *然后将结果以字符串形态返回 */
实例代码:
#include <stdio.h>
#include <string.h>
#include <time.h>
int main(void)
{
time_t tmp;
time(&tmp);
printf("%s\n", ctime(&tmp));
return 0;
}运行结果:(ctime获取的字符串自己带有换行符)

mktime() 将时间结构体struct tm的值转化为经过的秒数
#include <time.h> time_t mktime(struct tm *tm); /* *将时间结构体struct tm的值转化为经过的秒数 */
实例代码 :
#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
time_t tmp;
struct tm *timp;
time(&tmp);
timp = localtime(&tmp);
tmp = mktime(timp);
printf("%d\n", (int)tmp);
return 0;
}运行结果:

gettimeofday() 获取当前时间
#include <sys/time.h>
int gettimeofday(struct timeval *tv, struct timezone *tz);
struct timeval {
time_t tv_sec; /* seconds (秒)*/
suseconds_t tv_usec; /* microseconds(微秒) */
};
struct timezone {
int tz_minuteswest; /* minutes west of Greenwich */
int tz_dsttime; /* type of DST correction */
};
/*
*gettimeofday函数获取当前时间存于tv结构体中,相应的时区信息则存于tz结构体中
*需要注意的是tz是依赖于系统,不同的系统可能存在获取不到的可能,因此通常设置为NULL
*/实例代码:
#include <stdio.h>
#include <string.h>
#include <sys/time.h>
int main()
{
struct timeval tv;
gettimeofday(&tv, NULL);
printf("tv_sec = %d\n", (int)tv.tv_sec);
printf("tv_usec = %d\n", (int)tv.tv_usec);
return 0;
}运行结果:

==
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
在linux中,iphdr是ip数据包的描述结构体;iphdr所在的头文件为“/usr/src/linux/include/linux/ip.h”,结构体是由一批数据组合而成的结构型数据,组成结构型数据的每个数据称为结构型数据的成员,其描述了一块内存区间的大小及解释意义。
Centos系统中彻底删除Mysql数据库
往往是因为网络传输的限制,导致很多时候,我们需要在 Linux 系统下进行大文件的切割。这样将一个大文件切割成为多个小文件,进行传输,传输完毕之后进行合并即可。
Linux系统需要定期巡检,以检查服务器软硬件使用情况,相当于对人的体检,确保可以及时发现问题、解决问题,降低损失,常用的巡检命令如下
本文分享的linux中gedit文本编辑器自动保存的具体步骤内容相信不少朋友都需要,那就随小编来看一看吧!小编详细整理了图文教程给你们参考,希望对大家有帮助吧!
成为群英会员,开启智能安全云计算之旅
立即注册关注或联系群英网络
7x24小时售前:400-678-4567
7x24小时售后:0668-2555666
24小时QQ客服
群英微信公众号
CNNIC域名投诉举报处理平台
服务电话:010-58813000
服务邮箱:service@cnnic.cn
投诉与建议:0668-2555555
Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008