1. 程式人生 > >C++怎麼獲取XXXX-XX-XX格式系統時間

C++怎麼獲取XXXX-XX-XX格式系統時間

雖然相關的方法自己也寫了很多,但是耐不住伴隨時間的流失而遺忘。一下是我從網路摘抄的資料,一共自己回憶和使用。

連線地址:https://zhidao.baidu.com/question/553496270550986612.html

//方案— 優點:僅使用C標準庫;缺點:只能精確到秒級 
#include <time.h> 
#include <stdio.h> 
int main( void ) 
{ 
time_t t = time(0); 
char tmp[64]; 
strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",localtime(&t) ); 
puts( tmp ); 
return 0; 
} 
size_t
strftime(char *strDest, size_t maxsize, const char *format, const struct tm *timeptr); 根據格式字串生成字串。 struct tm *localtime(const time_t *timer); 取得當地時間,localtime獲取的結果由結構tm返回 返回的字串可以依下列的格式而定: %a 星期幾的縮寫。Eg:Tue %A 星期幾的全名。 Eg: Tuesday %b 月份名稱的縮寫。 %B 月份名稱的全名。 %c 本地端日期時間較佳表示字串。 %d 用數字表示本月的第幾天 (範圍為 00 至 31)。日期 %H 用 24 小時制數字表示小時數 (範圍為 00 至 23)。 %I 用 12 小時制數字表示小時數 (範圍為 01 至 12)。 %j 以數字表示當年度的第幾天 (範圍為 001 至 366)。 %m 月份的數字 (範圍由 1 至 12)。 %M 分鐘。 %p 以 ''AM'' 或 ''PM'' 表示本地端時間。 %S 秒數。 %U 數字表示為本年度的第幾周,第一個星期由第一個週日開始。 %W 數字表示為本年度的第幾周,第一個星期由第一個週一開始。 %w 用數字表示本週的第幾天 ( 0 為週日)。 %x 不含時間的日期表示法。 %X 不含日期的時間表示法。 Eg: 15:26:30 %y 二位數字表示年份 (範圍由 00 至 99)。 %Y 完整的年份數字表示,即四位數。 Eg:2008 %Z(%z) 時區或名稱縮寫。Eg:中國標準時間 %% % 字元。 //方案二 優點:能精確到
毫秒
級;缺點:使用了windows API #include <windows.h> #include <stdio.h> int main( void ) { SYSTEMTIME sys; GetLocalTime( &sys ); printf( "%4d/%02d/%02d %02d:%02d:%02d.%03d 星期%1d/n",sys.wYear,sys.wMonth,sys.wDay,sys.wHour,sys.wMinute, sys.wSecond,sys.wMilliseconds,sys.wDayOfWeek); return 0; } //方案三,優點:利用系統函式,還能修改系統時間 //此檔案必須是c++檔案 #include<stdlib.h> #include<iostream> using namespace std; void main() { system("time"); } //方案四,將當前時間折算為秒級,再通過相應的時間換算即可 //此檔案必須是c++檔案 #include<iostream> #include<ctime> using namespace std; int main() { time_t now_time; now_time = time(NULL); cout<<now_time; return 0; } 1,時間的獲取: 通過time()函式來獲得
日曆時間
(Calendar Time),其原型為:time_t time(time_t * timer); #include "stdafx.h" #include "time.h" #include "stdio.h" #include "stdlib.h" int main(void) { struct tm t; //定義tm時間結構,用來儲存時間格式的資料資訊 time_t t_of_day; //定義time_t時間結構 t.tm_year=2006-1900;//以1900年為標準計算時間 t.tm_mon=6; //為結構體成員賦值 t.tm_mday=1; t.tm_hour=0; t.tm_min=0; t.tm_sec=1; t.tm_isdst=0; t_of_day=mktime(&t); // 使用mktime()函式將用tm結構表示的時間轉化為日曆時間:time_t型變數。其函式原型如下:time_t mktime(struct tm * timeptr);ctime()函式(引數為time_t結構)將時間以固定的格式顯示出來,返回值是char*型的字串。 return 0; } 2,時間的儲存,通過預定義的兩種結構來儲存: 1,日曆時間(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 2,在標準C/C++中,我們可通過tm結構來獲得日期和時間,tm結構在time.h中的定義如下: 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()為負。*/ }; 3,時間的顯示: time.h 標頭檔案中提供了asctime()函式(引數為tm結構指標)和ctime()函式(引數為time_t結構)將時間以固定的格式顯示出來,兩者的返回值 都是char*型的字串。返回的時間格式為:星期幾 月份 日期 時:分:秒 年/n/0;time.h還提供了兩種不同的函式將日曆時間(一個用time_t表示的整數)轉換為我們平時看到的把年月日時分秒分開顯示的時間格式 tm: struct tm * gmtime(const time_t *timer); gmtime()函式是將日曆時間轉化為世界標準時間(即格林尼治時間),並返回一個tm結構體來儲存這個時間 struct tm * localtime(const time_t * timer);localtime()函式是將日曆時間轉化為本地時間 #include <stdafx.h> #include <time.h> #include <stdio.h> #include <stdlib.h> int main(void) { struct tm *local,*ptr; //定義tm結構指標儲存時間資訊 time_t t; //時間結構或者物件 t=time(NULL); //獲取當前系統的日曆時間 //通過time()函式來獲得日曆時間(Calendar Time), //其原型為:time_t time(time_t * timer); local=localtime(&t);//localtime()函式是將日曆時間轉化為本地時間 printf("Local hour is: %d/n",local->tm_hour);//輸出tm結構體的時間成員 printf("UTC hour is: %d/n",local->tm_hour); //local=gmtime(&t); //gmtime()函式是將日曆時間轉化為世界標準時間(即格林尼治時間), //並返回一個tm結構體來儲存這個時間 ptr=gmtime(&t);//將日曆時間轉化為世界標準時間 printf("The UTC time is %s/n",asctime(ptr)); //格式化輸出世界標準時間 printf("The local time is %s/n",ctime(&t));//輸出本地時間 /*asctime()函式(引數為tm結構指標)和ctime()函式(引數為time_t結構)將時間以固定的格式顯示出來,兩者的返回值都是char*型的字串。返回的時間格式為:星期幾 月份 日期 時:分:秒 年/n/0 */ return 0; }