1、常用的時間儲存方式
1)time_t型別,這本質上是乙個長整數,表示從1970-01-01 00:00:00到目前計時時間的秒數,如果需要更精確一點的,可以使用timeval精確到毫秒。
2)tm結構,這本質上是乙個結構體,裡面包含了各時間字段
struct tm ;
其中tm_year表示從2023年到目前計時時間間隔多少年,如果是手動設定值的話,tm_isdst通常取值-1。
2、常用的時間函式
time_t time(time_t *t); //取得從2023年1月1日至今的秒數char *asctime(const struct tm *tm); //將結構中的資訊轉換為真實世界的時間,以字串的形式顯示
char *ctime(const time_t *timep); //將timep轉換為真是世界的時間,以字串顯示,它和asctime不同就在於傳入的引數形式不一樣
struct tm *gmtime(const time_t *timep); //將time_t表示的時間轉換為沒有經過時區轉換的utc時間,是乙個struct tm結構指標
struct tm *localtime(const time_t *timep); //和gmtime類似,但是它是經過時區轉換的時間。
time_t mktime(struct tm *tm); //將struct tm 結構的時間轉換為從2023年至今的秒數
int gettimeofday(struct timeval *tv, struct timezone *tz); //返回當前距離2023年的秒數和微妙數,後面的tz是時區,一般不用
double difftime(time_t time1, time_t time2); //返回兩個時間相差的秒數
3、時間與字串的轉換
需要包含的標頭檔案如下
#include #include #include #include
1)unix/windows下時間轉字串參考**
time_t t; //秒時間tm* local; //本地時間
tm* gmt; //格林威治時間
char buf[128]= ;
t = time(null); //獲取目前秒時間
local = localtime(&t); //轉為本地時間
strftime(buf, 64, "%y-%m-%d %h:%m:%s", local);
std::cout << buf << std::endl;
gmt = gmtime(&t);//轉為格林威治時間
strftime(buf, 64, "%y-%m-%d %h:%m:%s", gmt);
std::cout << buf << std::endl;
2)unix字串轉時間參考**
tm tm_;time_t t_;
char buf[128]= ;
strcpy(buf, "2012-01-01 14:00:00");
strptime(buf, "%y-%m-%d %h:%m:%s", &tm_); //將字串轉換為tm時間
tm_.tm_isdst = -1;
t_ = mktime(&tm_); //將tm時間轉換為秒時間
t_ += 3600; //秒數加3600
tm_ = *localtime(&t_);//輸出時間
strftime(buf, 64, "%y-%m-%d %h:%m:%s", &tm_);
std::cout << buf << std::endl;
3)由於windows下沒有strptime函式,所以可以使用scanf來格式化
time_t stringtodatetime(char *str)
時間字串轉換
g 公元時代,例如ad公元 yy 年的後2位 yyyy 完整年 mm 月,顯示為1 12 mmm 月,顯示為英文月份簡寫,如 jan mmmm 月,顯示為英文月份全稱,如 janualy dd 日,2位數表示,如02 d 日,1 2位顯示,如 2 eee 簡寫星期幾,如sun eeee 全寫星期幾,...
Python 時間和字串轉換
例子 usr bin python coding utf 8 import time 格式化成2016 03 20 11 45 39形式 print time.strftime y m d h m s time.localtime 格式化成sat mar 28 22 24 24 2016形式 pri...
python 時間字串和時間戳之間的轉換
1.將字串的時間轉換為時間戳方法 a 2013 10 10 23 40 00 將其轉換為時間陣列 import time timearray time.strptime a,y m d h m s 轉換為時間戳 timestamp int time.mktime timearray timestam...