一旦事、標(biāo)準(zhǔn)C和C++都可用
1、獲取時(shí)間用time_t time( time_t * timer ),計(jì)算時(shí)間差使用double difftime( time_t timer1, time_t timer0 )。 精確到秒。
測(cè)試程序如下:
#include <time.h>
#include <stdio.h>
int main()
{
time_t start ,end ;
double cost;
time(&start);
sleep(1);
time(&end);
cost=difftime(end,start);
printf("%f/n",cost);
return 0;
}
本程序在fedora9測(cè)試通過(guò)替蛉。
關(guān)于代碼中的sleep函數(shù),需要注意的是:
1)在windows下,為Sleep函數(shù)灭返,且包含windows.h
2)關(guān)于sleep中的數(shù)盗迟,在Windows和Linux下1000代表的含義并不相同,Windows下的表示1000毫秒熙含,也就是1秒鐘罚缕;Linux下表示1000秒,Linux下使用毫秒級(jí)別的函數(shù)可以使用usleep怎静。
2邮弹、clock_t clock(),clock()
獲取的是計(jì)算機(jī)啟動(dòng)后的時(shí)間間隔,得到的是CPU時(shí)間,精確到1/CLOCKS_PER_SEC秒。
測(cè)試程序如下:
#include <time.h>
#include <stdio.h>
int main()
{
double start,end,cost;
start=clock();
sleep(1);
end=clock();
cost=end-start;
printf("%f/n",cost);
return 0;
}
二蚓聘、C++中(此處針對(duì)windows環(huán)境腌乡,標(biāo)準(zhǔn)c中則linux和windows都可以)
1、GetTickCount()調(diào)用函數(shù)需包含windows.h夜牡。得到的是系統(tǒng)運(yùn)行的時(shí)間 精確到毫秒与纽,測(cè)試程序如下:
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
double start = GetTickCount();
Sleep(1000);
double end=GetTickCount();
cout << "GetTickCount:" << end-start << endl;
return 0;
}
2、GetLocalTime()
獲得的是結(jié)構(gòu)體保存的year塘装,month等信息急迂。而C語(yǔ)言time函數(shù)獲得是從1970年1月1日0時(shí)0分0秒到此時(shí)的秒數(shù)。需要gmtime函數(shù)轉(zhuǎn)換為常用的日歷(返回的是世界時(shí)間蹦肴,要顯示常用的時(shí)間僚碎,則為localtime函數(shù))。
在c語(yǔ)言中阴幌,保存常用日歷的結(jié)構(gòu)體為struct tm勺阐,包含在time.h中,c++語(yǔ)言為SYSTEMTIME結(jié)構(gòu)體矛双,包含在winbase.h(編程包含windows.h即可)渊抽。當(dāng)然,精度肯定為秒了背零。
測(cè)試程序如下:
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
SYSTEMTIME start; //windows.h中
GetLocalTime(&start);//time.h的tm結(jié)構(gòu)體一樣的效果
cout<< start.year << endl;
}
c語(yǔ)言的gmtime方法的示范代碼如下:
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
struct tm *tm_ptr;
time_t the_time;
(void) time(&the_time);
tm_ptr = gmtime(&the_time);
printf("Raw time is %ld/n", the_time);
printf("gmtime gives:/n");
printf("date: %02d/%02d/%02d/n",
tm_ptr->tm_year, tm_ptr->tm_mon+1, tm_ptr->tm_mday);
printf("time: %02d:%02d:%02d/n",
tm_ptr->tm_hour, tm_ptr->tm_min, tm_ptr->tm_sec);
exit(0);
}
另外腰吟,c語(yǔ)言有類似于GetLocalTime方法的函數(shù)ctime()无埃。
對(duì)localtime()徙瓶,原型為:struct tm *localtime(const time_t *timep);將測(cè)試程序的gmtime改為localtime,則可以看到輸出的時(shí)間為爭(zhēng)取時(shí)間和日期了嫉称。為了更友好的得到時(shí)間和日期侦镇,像date那樣輸出,可以用asctime或ctime函數(shù)织阅,原型:char *ctime(const time_t *timeval);測(cè)試代碼如下:
#include <time.h>
#include <stdio.h>
#include <stdlib.h>
int main()
{
time_t the_time;
time(&the_time);
printf("The date is : %s /n" , ctime(&the_time));
exit(0);
}
3壳繁、要獲取高精度時(shí)間,可以使用
BOOL QueryPerformanceFrequency(LARGE_INTEGER *lpFrequency)獲取系統(tǒng)的計(jì)數(shù)器的頻率
BOOL QueryPerformanceCounter(LARGE_INTEGER *lpPerformanceCount)獲取計(jì)數(shù)器的值
然后用兩次計(jì)數(shù)器的差除以Frequency就得到時(shí)間。
測(cè)試程序如下:
#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
LARGE_INTEGER m_nFreq;
LARGE_INTEGER m_nBeginTime;
LARGE_INTEGER nEndTime;
QueryPerformanceFrequency(&m_nFreq); // 獲取時(shí)鐘周期
QueryPerformanceCounter(&m_nBeginTime); // 獲取時(shí)鐘計(jì)數(shù)
Sleep(100);
QueryPerformanceCounter(&nEndTime);
cout << (double)(nEndTime.QuadPart-m_nBeginTime.QuadPart)*1000/m_nFreq.QuadPart << endl;
}
需要注意的就是結(jié)果需要強(qiáng)制轉(zhuǎn)換為double闹炉,不然會(huì)得到如下錯(cuò)誤:<< is ambiguous蒿赢。
4、timeGetTime()渣触。
精度:毫秒羡棵,與GetTickCount()相當(dāng)。使用需要包含windows.h嗅钻,并加入Winmm.lib(雖然查到資料說(shuō)需要包含mmsystem.h皂冰,不過(guò)經(jīng)驗(yàn)證,可以不用包含)养篓。測(cè)試代碼如下:
#include <iostream>
#include <windows.h>//GetTickCount
//#include <mmsystem.h>
using namespace std;
int main()
{
DWORD start = timeGetTime();//
Sleep(1000);
DWORD end= timeGetTime();//
cout << timeGetTime() << endl;
return 0;
}
5秃流、MFC中,CTime::GetCurrentTime() 精確到秒柳弄,不列出測(cè)試代碼舶胀。