關於 C++ 日期 & 時間 初入門

來源:互聯網
上載者:User

關於 C++ 日期 & 時間 初入門

C++ 標準庫沒有提供所謂的日期類型。C++ 繼承了 C 語言用於日期和時間操作的結構和函數。

為了使用日期和時間相關的函數和結構,需要在 C++ 程式中引用  標頭檔。
 有四個與時間相關的類型:clock_t、time_t、size_t 和 tm。類型 clock_t、size_t 和 time_t 能夠把系統時間和日期表示為某種整數。
 結構類型 tm 把日期和時間以 C 結構的形式儲存,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
  int tm_year;  // 自 1900 年起的年數
  int tm_wday;  // 一周中的第幾天,範圍從 0 到 6,從星期日算起
  int tm_yday;  // 一年中的第幾天,範圍從 0 到 365,從 1 月 1 日算起
  int tm_isdst; // 夏令時
}

當前日期和時間

下面的執行個體擷取當前系統的日期和時間。
#include <iostream>
#include <ctime>
 
using namespace std;
 
int main( )
{
    /* 基於當前系統的當前日期/時間 */
    time_t now = time(0);
   
    /* 把 now 轉換為字串形式 */
    char* dt = ctime(&now);
   
    cout << "本地日期和時間:" << dt << endl;
   
    return 0;
}

使用結構 tm 格式化時間

tm 結構在 C/C++ 中處理日期和時間相關的操作時,顯得尤為重要。tm 結構以 C 結構的形式儲存日期和時間。大多數與時間相關的函數都使用了 tm 結構。下面的執行個體使用了 tm 結構和各種與日期和時間相關的函數。
#include <iostream>
#include <ctime>
 
using namespace std;
 
int main()
{
  /* 基於當前系統的當前日期/時間 */
  time_t now = time(0);
 
  cout << "1970 到目前經過秒數:" << now << endl;
 
  tm *ltm = localtime(&now);
 
  /* 輸出 tm 結構的各個組成部分 */
  cout << "年: "<< 1900 + ltm->tm_year << endl;
  cout << "月: "<< 1 + ltm->tm_mon<< endl;
  cout << "日: "<<  ltm->tm_mday << endl;
  cout << "時間: "<< ltm->tm_hour << ":";
  cout << ltm->tm_min << ":";
  cout << ltm->tm_sec << endl;
 
  return 0;
}

補充 C/C++ 中關於日期和時間的重要函數:

序號 函數 & 描述
1 time_t time(time_t *time);該函數返回系統的當前日曆時間,自 1970 年 1 月 1 日以來經過的秒數。如果系統沒有時間,則返回 .1。
2 char ctime(const time_t time);該返回一個表示當地時間的字串指標,字串形式 day month year hours:minutes:seconds year\n\0。
3 struct tm localtime(const time_t time);該函數返回一個指向表示本地時間的 tm 結構的指標。
4 clock_t clock(void);該函數返回程式執行起(一般為程式的開頭),處理器時鐘所使用的時間。如果時間不可用,則返回 .1。
5 char * asctime ( const struct tm * time );該函數返回一個指向字串的指標,字串包含了 time 所指向結構中儲存的資訊,返回形式為:day month date hours:minutes:seconds year\n\0。
6 struct tm gmtime(const time_t time);該函數返回一個指向 time 的指標,time 為 tm 結構,用國際標準時間(UTC)也被稱為格林尼治標準時間(GMT)表示。
7 time_t mktime(struct tm *time);該函數返回日曆時間,相當於 time 所指向結構中儲存的時間。
8 double difftime ( time_t time2, time_t time1 );該函數返回 time1 和 time2 之間相差的秒數。
9 size_t strftime();該函數可用于格式化日期和時間為指定的格式。

本文永久更新連結地址:https://www.bkjia.com/Linux/2018-02/151106.htm

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.