zoukankan      html  css  js  c++  java
  • C/C++_date&time

    在标准C/C++中与日期和时间相关的数据结构

    注意:年份是实际年份与  1900  的差值

    我们可通过tm结构来获得日期和时间,tm结构在time.h中的定义如下:

    #ifndef _TM_DEFINED
    struct tm {
              int tm_sec;       /* 秒 – 取值区间为[0,59] */
              int tm_min;       /* 分 - 取值区间为[0,59] */
              int tm_hour;      /* 时 - 取值区间为[0,23] */
              int tm_mday;      /* 一个月中的日期 - 取值区间为[1,31] */
              int tm_mon;       /* 月份(从一月开始,0代表一月) - 取值区间为[0,11] */
              int tm_year;      /* 年份,其值等于实际年份减去1900 */
              int tm_wday;      /* 星期 – 取值区间为[0,6],其中0代表星期天,1代表星期一,以此类推 */
              int tm_yday;      /* 从每年的1月1日开始的天数 – 取值区间为[0,365],其中0代表1月1日,1代表1月2日,以此类推 */
              int tm_isdst;     /* 夏令时标识符,实行夏令时的时候,tm_isdst为正。不实行夏令时的进候,tm_isdst为0;不了解情况时,tm_isdst()为负。*/
              };
    #define _TM_DEFINED
    #endif

    exmple:

    string timeIn = "2016-09-17 09:48:13.560";
        tm tm_timeIn = { 0 };
        int timeOutMsecTemp = 0;
        sscanf_s(timeIn.c_str(), "%4d-%2d-%2d %2d:%2d:%2d.%3d",
            &tm_timeIn.tm_year,
            &tm_timeIn.tm_mon,
            &tm_timeIn.tm_mday,
            &tm_timeIn.tm_hour,
            &tm_timeIn.tm_min,
            &tm_timeIn.tm_sec,
            &timeInMsecTemp);
        tm_timeIn.tm_year -= 1900;    //年份,指的是与1900年的差值
        tm_timeIn.tm_mon -= 1;     //月份,0代表1月,故应减去1
    char  dt[50];
    ctime_s(dt, sizeof dt,&time_t_In); 
    cout << dt << endl;                //Sat Sep 17 09:48:13 2016
    
    char  bat[50];
    asctime_s(bat, sizeof bat, &tm_timeIn);
    cout << bat << endl;               //Sat Sep 17 09:48:13 2016
    

    ANSI C标准称使用tm结构的这种时间表示为分解时间(broken-down time)。

    而日历时间(Calendar Time)是通过time_t数据类型来表示的,用time_t表示的时间(日历时间)是从一个时间点(例如:1970年1月1日0时0分0秒)到此时的秒数。在time.h中,我们也可以看到time_t是一个长整型数:

    #ifndef _TIME_T_DEFINED
    typedef long time_t;           /* 时间值 */
    #define _TIME_T_DEFINED       /* 避免重复定义 time_t */
    #endif

    大家可能会产生疑问:既然time_t实际上是长整型,到未来的某一天,从一个时间点(一般是1970年1月1日0时0分0秒)到那时的秒数(即日历时间)超出了长整形所能表示的数的范围怎么办?对time_t数据类型的值来说,它所表示的时间不能晚于2038年1月18日19时14分07秒。为了能够表示更久远的时间,一些编译器厂商引入了64位甚至更长的整形数来保存日历时间。比如微软在Visual C++中采用了__time64_t数据类型来保存日历时间,并通过_time64()函数来获得日历时间(而不是通过使用32位字的time()函数),这样就可以通过该数据类型保存3001年1月1日0时0分0秒(不包括该时间点)之前的时间。

    在time.h头文件中,我们还可以看到一些函数,它们都是以time_t为参数类型或返回值类型的函数:(参考

    double difftime(time_t end, time_t start);     //返回的是  end - start  的差值
    time_t mktime(struct tm * timeptr);            //结构体tm 转化为 从1970年到现在的 秒数(其中tm.tm_year是实际年份与1900的差值)
    time_t time(time_t * timer);                   //time_t now = time(NULL);返回当前时间 与 1970年1月1日的差值 的秒数 
    char str[26];
    errno_t asctime_s(char * buf, rsize_t bufsz, const struct tm * time_ptr); 
    //tm结构转化为the following fixed 25-character form(
    也占一个字节): Tue May 26 21:51:50 2015
     
    ctime_s(char * buf, rsize_t bufsz, const time_t *timer);  
    //time_t转化为 :Tue May 26 21:51:03 2015
    

    example:

    #define __STDC_WANT_LIB_EXT1__ 1
    #include <time.h>
    #include <stdio.h>
     
    int main(void)
    {
        time_t t = time(NULL);
        printf("UTC:   %s", asctime(gmtime(&t)));
        printf("local: %s", asctime(localtime(&t)));
     
    #ifdef __STDC_LIB_EXT1__
        struct tm buf;
        char str[26];
        asctime_s(str,sizeof str,gmtime_s(&t, &buf));
        printf("UTC:   %s", str);
        asctime_s(str,sizeof str,localtime_s(&t, &buf)));
        printf("local: %s", str);
    #endif
    }
    Output:
    
    UTC:   Tue Feb 17 18:12:09 2015
    local: Tue Feb 17 13:12:09 2015
    UTC:   Tue Feb 17 18:12:09 2015
    local: Tue Feb 17 13:12:09 2015

    此外,time.h还提供了两种不同的函数将日历时间(一个用time_t表示的整数)转换为我们平时看到的把年月日时分秒分开显示的时间格式tm:

    struct tm * gmtime(const time_t *timer);                                          
    struct tm * localtime(const time_t * timer);
    struct tm *gmtime_s(const time_t *restrict time, struct tm *restrict result); 
     //从1970年1月1日到现在的秒数 转化为 标准时间UTC:   Tue Feb 17 18:12:09 2015
    struct tm *localtime_s(const time_t *restrict time, struct tm *restrict result); 
    //从1970年1月1日到现在的秒数 转化为 系统本地时间local: Tue Feb 17 13:12:09 2015

    通过查阅MSDN,我们可以知道Microsoft C/C++ 7.0中时间点的值(time_t对象的值)是从1899年12月31日0时0分0秒到该时间点所经过的秒数,而其它各种版本的Microsoft C/C++和所有不同版本的Visual C++都是计算的从1970年1月1日0时0分0秒到该时间点所经过的秒数。

  • 相关阅读:
    java Cache
    世界上第一个免费的云
    网上看到的一些IT资源
    图片压缩优化kraken
    Asp.net MVC Comet推送
    jQuery插件开发方式
    jQuery之Nestable
    jqGrid使用记录
    Windbg符号与源码 《第二篇》
    jQuery 获取 URL信息
  • 原文地址:https://www.cnblogs.com/Lunais/p/6115560.html
Copyright © 2011-2022 走看看