Linux C++常用时间结构

timeva结构:

struct timeval  

{  

  time_t tv_sec;        /* Seconds. */  

  suseconds_t tv_usec;  /* Microseconds. */ 

};  

 

tm结构:

struct tm
{
    int tm_sec;  /*秒,正常范围0-59, 但允许至61*/
    int tm_min;  /*分钟,0-59*/
    int tm_hour; /*小时, 0-23*/
    int tm_mday; /*日,即一个月中的第几天,1-31*/
    int tm_mon;  /*月, 从一月算起,0-11*/  1+p->tm_mon;
    int tm_year;  /*年, 从1900至今已经多少年*/  1900 p->tm_year;
    int tm_wday; /*星期,一周中的第几天, 从星期日算起,0-6*/
    int tm_yday; /*从今年1月1日到目前的天数,范围0-365*/
    int tm_isdst; /*日光节约时间的旗标*/
};

 

posted @ 2020-06-01 21:59  生而为人,学无止境  阅读(279)  评论(0编辑  收藏  举报