① 基本认识
UNIX系统时间主要分为两种: 日历时间 和 进程时间
② 日历时间
该时间是自协调时间时间 1970年1月1日 00:00:00这个特定时间来计算累积的秒数。(称为UTC 格林尼治标准时间)
时间值是存放在系统类型time_t里面.
③ 进程时间
也称为CPU时间.进程时间以时钟滴答计算. 每秒曾经取为50 60 或 100个时钟滴答. 时间值是存放在系统类型clock_t里面.
当度量一个进程执行时间时,UNIX系统为进程计算了三个时间值:
时钟时间.: 墙上时钟时间,他是进程运行的时间总量
用户CPU时间:系统执行用户指令需要的时间
系统CPU时间:执行内核程序(即运行内核接口等)所需要的时间 当然获取进程的进程时间很简单,譬如获取ls的进程时间:time ls,结果如下所示:
④获取Linux系统时间
命令显示系统时间:date
API获取系统时间 ① : time函数
#include <time.h> time_t time(time_t *t); 这个函数获取到的信息只是从1970年1月1日的UTC时间到现在的时间间隔.
当t非空时,t应该存放一个空间首地址,该空间类型应该是time_t类型 则time函数会把时间间隔存放在t指向的空间里面.
如果t为NULL,则time函数直接把时间间隔当成函数返回值返回.
API获取系统时间 ②: 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函数不是线程安全的。因为locatime
返回的是进程全局共享资源(全局变量或者是静态局部变量),在多线程的环境中很容易出现非原子性操作!
多线程应用里面,应该用localtime_r函数替代localtime函数,因为localtime_r是线程安全的.
tm结构体类型具体如下所示:
API获取系统时间 ③: 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 将时间以换为字符串字符串格式返回
API获取系统时间 ④: 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结构中的信息转换成真实世界所使用的时间日期表示方法,
*然后将结果以字符串形态返回
*/
API获取系统时间 ⑤: mktime() 将时间结构体struct tm的值转化为经过的秒数
#include <time.h>
time_t mktime(struct tm *tm);
/*
*将时间结构体struct tm的值转化为经过的秒数
*/
API获取系统时间 ⑤: 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
*/