C++時間戳轉化(涉及GMT CST時區轉化)

問題由來css

時間戳轉換(時間戳:自 1970 年1月1日(00:00:00 )至當前時間的總秒數。)linux

#include <stdio.h>
#include <time.h>

int main(int argc, const char * argv[])
{    
    time_t t;
    struct tm *p;
    t=1408413451;
    p=gmtime(&t);
    char s[80];
    strftime(s, 80, "%Y-%m-%d %H:%M:%S", p);
    printf("%d: %s\n", (int)t, s);
}

結果函數

1408413451      2014-08-19 01:57:1408384651

但是利用命令在linux終端計算的結果不一spa

[###t]$ date -d @1408413451
Tue Aug 19 09:57:31 CST 2014

經過比較發現,二者正好差8個小時,CST表示格林尼治時間,經過strftime()函數能夠輸出時區,改正以下code

#include <stdio.h>
#include <time.h>

int main(int argc, const char * argv[])
{    
    time_t t;
    struct tm *p;
    t=1408413451;
    p=gmtime(&t);
    char s[80];
    strftime(s, 80, "%Y-%m-%d %H:%M:%S::%Z", p);
    printf("%d: %s\n", (int)t, s);
}

結果blog

1408413451: 2014-08-19 01:57:31::GMT 

 

深究io

GMT(Greenwich Mean Time)表明格林尼治標準時間。十七世紀,格林威治皇家天文臺爲了海上霸權的擴張計畫而進行天體觀測。1675年舊皇家觀測所正式成立,經過格林威治的子午線做爲劃分地球東西兩半球的經度零度。觀測所門口牆上有一個標誌24小時的時鐘,顯示當下的時間,對全球而言,這裏所設定的時間是世界時間參考點,全球都以格林威治的時間做爲標準來設定時間,這就是咱們耳熟能詳的「格林威治標準時間」(Greenwich Mean Time,簡稱G.M.T.)的由來。class

CST卻同時能夠表明以下 4 個不一樣的時區:date

Central Standard Time (USA) UT-6:00
Central Standard Time (Australia) UT+9:30
China Standard Time UT+8:00
Cuba Standard Time UT-4:00

可見,CST能夠同時表示美國,澳大利亞,中國,古巴四個國家的標準時間。終端

好了二者差8個小時(CST比GMT晚/大8個小時),GMT+8*3600=CST,代碼以下

#include <stdio.h>
#include <time.h>

int main(int argc, const char * argv[])
{    
    time_t t;
    struct tm *p;
    t=1408413451;
    p=gmtime(&t);
    char s[80];
    strftime(s, 80, "%Y-%m-%d %H:%M:%S::%Z", p);
    printf("%d: %s\n", (int)t, s);

    t=1408413451 + 28800;
    p=gmtime(&t);
    strftime(s, 80, "%Y-%m-%d %H:%M:%S", p);
    printf("%d: %s\n", (int)t, s);
    return 0;
}

結果

1408413451: 2014-08-19 01:57:31::GMT
1408442251: 2014-08-19 09:57:31

linux平臺

Tue Aug 19 09:57:31 CST 2014
相關文章
相關標籤/搜索