1、獲取日曆時間
time_t是定義在time.h中的一個類型,表示一個日曆時間,也就是從1970年1月1日0時0分0秒到此時的秒數,原型是:
typedef long time_t; /* time value */
能夠看出time_t實際上是一個長整型,因爲長整型能表示的數值有限,所以它能表示的最遲時間是2038年1月18日19時14分07秒。ios
函數time能夠獲取當前日曆時間時間,time的定義:
time_t time(time_t *)
緩存
#include <iostream> 函數
#include <time.h> url
using namespace std; spa
int main(void) .net
{ 指針
time_t nowtime; orm
nowtime = time(NULL); //獲取當前時間 blog
cout << nowtime << endl;
return 0;
}
輸出結果:1268575163
time(取得目前的時間)
函數定義
time_t time(time_t *t);
函數說明
此函數會返回從公元1970年1月1日的0時0分0秒算起到如今所通過的秒數(CT時間)。若是t是非空指針的話,此函數也會將返回值存到t指針所指的內存。
返回值
成功則返回秒數,失敗則返回((time_t)-1)值,錯誤緣由存於errno中。
2、獲取本地時間
time_t只是一個長整型,不符合咱們的使用習慣,須要轉換成本地時間,就要用到tm結構,time.h中結構tm的原型是:
struct tm {
int tm_sec; /* seconds after the minute - [0,59] */
int tm_min; /* minutes after the hour - [0,59] */
int tm_hour; /* hours since midnight - [0,23] */
int tm_mday; /* day of the month - [1,31] */
int tm_mon; /* months since January - [0,11] */
int tm_year; /* years since 1900 */
int tm_wday; /* days since Sunday - [0,6] */
int tm_yday; /* days since January 1 - [0,365] */
int tm_isdst; /* daylight savings time flag */
};
能夠看出,這個機構定義了年、月、日、時、分、秒、星期、當年中的某一天、夏令時。能夠用這個結構很方便的顯示時間。
用localtime獲取當前系統時間,該函數將一個time_t時間轉換成tm結構表示的時間,函數原型:
struct tm * localtime(const time_t *)
使用gmtime函數獲取格林尼治時間,函數原型:
struct tm * gmtime(const time_t *)
爲了方便顯示時間,定義了一個函數void dsptime(const struct tm *);
[cpp] view plain copy
#include <iostream>
#include <time.h>
using namespace std;
void dsptime(const struct tm *); //輸出時間。
int main(void)
{
time_t nowtime;
nowtime = time(NULL); //獲取日曆時間
cout << nowtime << endl; //輸出nowtime
struct tm *local,*gm;
local=localtime(&nowtime); //獲取當前系統時間
dsptime(local);
gm=gmtime(&nowtime); //獲取格林尼治時間
dsptime(gm);
return 0;
}
void dsptime(const struct tm * ptm)
{
char *pxq[]={"日","一","二","三","四","五","六"};
cout << ptm->tm_year+1900 << "年" << ptm->tm_mon+1 << "月" << ptm->tm_mday << "日 " ;
cout << ptm->tm_hour << ":" << ptm->tm_min << ":" << ptm->tm_sec <<" " ;
cout << " 星期" <<pxq[ptm->tm_wday] << " 當年的第" << ptm->tm_yday << "天 " << endl;
}
輸出結果:
1268575163
2010年3月14日 21:59:23 星期日 當年的第72天
2010年3月14日 13:59:23 星期日 當年的第72天
3、輸出時間
C/C++語言提供了用字符串格式表示時間的函數。
char * asctime(const struct tm *)
char * ctime(const time_t *)
這兩個函數返回值都是一個表示時間的字符串,區別在於傳入的參數不一樣。
[cpp] view plain copy
#include <iostream>
#include <time.h>
using namespace std;
int main(void)
{
time_t nowtime;
nowtime = time(NULL); //獲取日曆時間
cout << nowtime << endl; //輸出nowtime
struct tm *local;
local=localtime(&nowtime); //獲取當前系統時間
cout << asctime(local) ;
cout << ctime(&nowtime) ;
return 0;
}
輸出結果:
1268575163
Sun Mar 14 13:59:23 2010
Sun Mar 14 21:59:23 2010
4、計算時間間隔
能夠經過difftime來計算兩個時間的間隔,能夠精確到秒,函數原型:
double difftime(time_t, time_t)
要想精確到毫秒,就要使用clock函數了,函數原型:
clock_t clock(void)
從定義能夠看出clock返回一個clock_t類型,這個類型也定義在time.h中,原型是:
typedef long clock_t
clock_t也是一個長整型,表示的是從程序開始運行到執行clock函數時所通過的cpu時鐘計時單元數。
[cpp] view plain copy
#include <iostream>
#include <time.h>
using namespace std;
int main(void)
{
time_t start, ends;
clock_t cstart,cends;
start=time(NULL);
cstart=clock();
system("pause");
ends=time(NULL);
cends=clock();
cout << "時間差:" << difftime(ends,start) << endl;
cout << "Clock時間差:" << cends-cstart << endl;
return 0;
}
輸出結果:
請按任意鍵繼續. . .
時間差:3
Clock時間差:3094
在time.h中定義了一個CLOCKS_PER_SEC
/* Clock ticks macro - ANSI version */
#define CLOCKS_PER_SEC 1000
表示1秒鐘內有多少個時鐘計時單元,在標準C/C++中,最小的計時單位是1毫秒。
5、自定義時間格式
C/C++在time.h中提供了一個自定義時間格式的函數strftime,函數原型:
size_t strftime(char *strDest, size_t maxsize, const char *format, const struct tm *timeptr);
參數說明:
char *strDest:用來存放格式化後的字符串緩存,
size_t maxsize:指定最多能夠輸出的字符數,
const char *format:格式化字符串,
const struct tm *timeptr:要轉換的時間。
可以使用的格式化字符串:
%a 星期幾的簡寫
%A 星期幾的全稱
%b 月分的簡寫
%B 月份的全稱
%c 標準的日期的時間串
%C 年份的後兩位數字
%d 十進制表示的每個月的第幾天
%D 月/天/年
%e 在兩字符域中,十進制表示的每個月的第幾天
%F 年-月-日
%g 年份的後兩位數字,使用基於周的年
%G 年分,使用基於周的年
%h 簡寫的月份名
%H 24小時制的小時
%I 12小時制的小時
%j 十進制表示的每一年的第幾天
%m 十進制表示的月份
%M 十時製表示的分鐘數
%n 新行符
%p 本地的AM或PM的等價顯示
%r 12小時的時間
%R 顯示小時和分鐘:hh:mm
%S 十進制的秒數
%t 水平製表符
%T 顯示時分秒:hh:mm:ss
%u 每週的第幾天,星期一爲第一天 (值從0到6,星期一爲0)
%U 第年的第幾周,把星期日作爲第一天(值從0到53)
%V 每一年的第幾周,使用基於周的年
%w 十進制表示的星期幾(值從0到6,星期天爲0)
%W 每一年的第幾周,把星期一作爲第一天(值從0到53)
%x 標準的日期串
%X 標準的時間串
%y 不帶世紀的十進制年份(值從0到99)
%Y 帶世紀部分的十進制年份
%z,%Z 時區名稱,若是不能獲得時區名稱則返回空字符。
%% 百分號
[cpp] view plain copy
#include <iostream>
#include <time.h>
using namespace std;
int main(void)
{
time_t nowtime;
nowtime = time(NULL); //獲取日曆時間
cout << nowtime << endl; //輸出nowtime
struct tm *local;
local=localtime(&nowtime); //獲取當前系統時間
char buf[80];
strftime(buf,80,"格式化輸出:%Y-%m-%d %H:%M:%S",local);
cout << buf << endl;
return 0;
}
輸出結果:1268575163格式化輸出:2010-03-14 21:59:23