一、标准c和c 都可用
1、获取时间用time_t time( time_t * timer ),计算时间差使用double difftime( time_t timer1, time_t timer0 )。 精确到秒。
测试程序如下:
#include #include 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测试通过。
关于代码中的sleep函数,需要注意的是:
1)在windows下,为sleep函数,且包含windows.h
2)关于sleep中的数,在windows和linux下1000代表的含义并不相同,windows下的表示1000毫秒,也就是1秒钟;linux下表示1000秒,linux下使用毫秒级别的函数可以使用usleep。
2、clock_t clock(),clock()
获取的是计算机启动后的时间间隔,得到的是cpu时间,精确到1/clocks_per_sec秒。
测试程序如下:
#include #include int main() { double start,end,cost; start=clock(); sleep(1); end=clock(); cost=end-start; printf("%f/n",cost); return 0; }
二、c 中(此处针对windows环境,标准c中则linux和windows都可以)
1、gettickcount()
调用函数需包含windows.h。得到的是系统运行的时间 精确到毫秒,测试程序如下:
#include #include using namespace std; int main() { double start = gettickcount(); sleep(1000); double end=gettickcount(); cout << "gettickcount:" << end-start << endl; return 0; }
2、getlocaltime()
获得的是结构体保存的year,month等信息。而c语言time函数获得是从1970年1月1日0时0分0秒到此时的秒数。需要gmtime函数转换为常用的日历(返回的是世界时间,要显示常用的时间,则为localtime函数)。
在c语言中,保存常用日历的结构体为struct tm,包含在time.h中,c 语言为systemtime结构体,包含在winbase.h(编程包含windows.h即可)。当然,精度肯定为秒了。
测试程序如下:
#include #include using namespace std; int main() { systemtime start; //windows.h中 getlocaltime(&start);//time.h的tm结构体一样的效果 cout<< start.year << endl; }
c语言的gmtime方法的示范代码如下:
#include #include #include 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: d/d/d/n", tm_ptr->tm_year, tm_ptr->tm_mon 1, tm_ptr->tm_mday); printf("time: d:d:d/n", tm_ptr->tm_hour, tm_ptr->tm_min, tm_ptr->tm_sec); exit(0); }
另外,c语言有类似于getlocaltime方法的函数ctime()。
对localtime(),原型为:struct tm *localtime(const time_t *timep);将测试程序的gmtime改为localtime,则可以看到输出的时间为争取时间和日期了。为了更友好的得到时间和日期,像date那样输出,可以用asctime或ctime函数,原型:char *ctime(const time_t *timeval);测试代码如下:
#include #include #include int main() { time_t the_time; time(&the_time); printf("the date is : %s /n" , ctime(&the_time)); exit(0); }
3、要获取高精度时间,可以使用
bool queryperformancefrequency(large_integer *lpfrequency)获取系统的计数器的频率
bool queryperformancecounter(large_integer *lpperformancecount)获取计数器的值
然后用两次计数器的差除以frequency就得到时间。
测试程序如下:
#include #include using namespace std; int main() { large_integer m_nfreq; large_integer m_nbegintime; large_integer nendtime; queryperformancefrequency(&m_nfreq); // 获取时钟周期 queryperformancecounter(&m_nbegintime); // 获取时钟计数 sleep(100); queryperformancecounter(&nendtime); cout << (double)(nendtime.quadpart-m_nbegintime.quadpart)*1000/m_nfreq.quadpart << endl; }
需要注意的就是结果需要强制转换为double,不然会得到如下错误:<< is ambiguous。
4、timegettime()。
精度:毫秒,与gettickcount()相当。使用需要包含windows.h,并加入winmm.lib(虽然查到资料说需要包含mmsystem.h,不过经验证,可以不用包含)。测试代码如下:
#include #include //gettickcount //#include using namespace std; int main() { dword start = timegettime();// sleep(1000); dword end= timegettime();// cout << timegettime() << endl; return 0; }
5、mfc中,ctime::getcurrenttime() 精确到秒,不列出测试代码。