time_t tm timeval 和 时间字符串的转换方法

2019-10-13 09:52:25王冬梅

1、常用的时间存储方式  

1)time_t类型,这本质上是一个长整数,表示从1970-01-01 00:00:00到目前计时时间的秒数,如果需要更精确一点的,可以使用timeval精确到毫秒。  

2)tm结构,这本质上是一个结构体,里面包含了各时间字段 

struct tm { 
    int tm_sec;   /* seconds after the minute - [0,59] */ 
    int tm_min;   /* minutes after the hour - [0,59] */ 
    int tm_hour;  /* hours since midnight - [0,23] */ 
    int tm_mday;  /* day of the month - [1,31] */ 
    int tm_mon;   /* months since January - [0,11] */ 
    int tm_year;  /* years since 1900 */ 
    int tm_wday;  /* days since Sunday - [0,6] */ 
    int tm_yday;  /* days since January 1 - [0,365] */ 
    int tm_isdst;  /* daylight savings time flag */ 
    }; 

 其中tm_year表示从1900年到目前计时时间间隔多少年,如果是手动设置值的话,tm_isdst通常取值-1。 

3)struct timeval结构体在time.h中的定义为

struct timeval {
     time_t    tv_sec;   /* seconds */
     suseconds_t  tv_usec; /* microseconds */
 };

2、常用的时间函数 

time_t time(time_t *t); //取得从1970年1月1日至今的秒数 

char *asctime(const struct tm *tm); //将结构中的信息转换为真实世界的时间,以字符串的形式显示 

char *ctime(const time_t *timep); //将timep转换为真是世界的时间,以字符串显示,它和asctime不同就在于传入的参数形式不一样 

struct tm *gmtime(const time_t *timep); //将time_t表示的时间转换为没有经过时区转换的UTC时间,是一个struct tm结构指针  

struct tm *localtime(const time_t *timep); //和gmtime类似,但是它是经过时区转换的时间。 

time_t mktime(struct tm *tm); //将struct tm 结构的时间转换为从1970年至今的秒数 

int gettimeofday(struct timeval *tv, struct timezone *tz); //返回当前距离1970年的秒数和微妙数,后面的tz是时区,一般不用 

double difftime(time_t time1, time_t time2); //返回两个时间相差的秒数 

3、时间与字符串的转换  

需要包含的头文件如下  

#include <iostream> 
#include <time.h> 
#include <stdlib.h> 
#include <string.h>  

1)unix/windows下时间转字符串参考代码 

time_t t; //秒时间 
tm* local; //本地时间  
tm* gmt;  //格林威治时间 
char buf[128]= {0}; 
 
t = time(NULL); //或者time(&t);//获取目前秒时间 
local = localtime(&t); //转为本地时间 
strftime(buf, 64, "%Y-%m-%d %H:%M:%S", local); 
std::cout << buf << std::endl; 
 
gmt = gmtime(&t);//转为格林威治时间 
strftime(buf, 64, "%Y-%m-%d %H:%M:%S", gmt); 
std::cout << buf << std::endl;