Linux编程时获取当前时间实例解析(2)

2.获得当前时间
在所有的UNIX下,都有个time()的函数
time_t time(time_t *t);
这个函数会传回从epoch开始计算起的秒数,如果t是non-null,它将会把时间值填入t中。

对某些需要较高精准度的需求,Linux提供了gettimeofday()。
int gettimeofday(struct timeval * tv,struct timezone *tz);
int settimeofday(const struct timeval * tv,const struct timezone *tz);

struct tm格式时间函数

struct tm * gmtime(const time_t * t);
转换成格林威治时间。有时称为GMT或UTC。

struct tm * localtime(const time_t *t);
转换成本地时间。它可以透过修改TZ环境变数来在一台机器中,不同使用者表示不同时间。

time_t mktime(struct tm *tp);
转换tm成为time_t格式,使用本地时间。

tme_t timegm(strut tm *tp);
转换tm成为time_t格式,使用UTC时间。

double difftime(time_t t2,time_t t1);
计算秒差。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzypxj.html