c++程序计时

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

C++运行时间的代码

如何获取代码运行时间在调试中,经常需要计算某一段代码的执行时间,下面给出两种常用的方式:

第一种:使用GetTickCount函数

#include

#include

int main() {

DWORD start_time=GetTickCount(); {

//此处为被测试代码}

DWORD end_time=GetTickCount(); cout<<"The run time is:"<<(end_time-start_time)<<"ms!"<

第二种:使用cl ock()函数

#include

#include

int main() {

clock_t start_time=clock();

{

//被测试代码}

clock_t end_time=clock(); cout<< "Running time is: "<(end_time-start_time)/CLOCKS_PER_SEC*1000<<"ms"<

由上面分析可知,用clock()函数计算运行时间,表示范围一定大于GetTickCount()函数,所以,建议使用clock()函数。

=============================================================================== 1.使用CTime类

CString str; //获取系统时间CTime tm; tm=CTime::GetCurrentTime();

str=tm.Format("现在时间是%Y年%m月%d日%X"); MessageBox(str,NULL,MB_OK);

2: 得到系统时间日期(使用GetLocalTime)

SYSTEMTIME st; CString strDate,strTime; GetLocalTime(&st);

strDate.Format("%4d-%2d-%2d",st.wYear,st.wMonth,st.wDay);

strTime.Format("%2d:%2d:%2d",st.wHour,st.wMinute,st.wSecond);

3.使用GetTickCount //获取程序运行时间long t1=GetTickCount();//程序段开始前取得系统运行时间(ms) Sleep(500);

long t2=GetTickCount();();//程序段结束后取得系统运行时间(ms) str.Format("time:%dms",t2-t1);//前后之差即程序运行时间AfxMessageBox(str);

//获取系统运行时间long t=GetTickCount(); CString str,str1; str1.Format("系统已运行%d时",t/3600000); str=str1;

t%=3600000;

str1.Format("%d分",t/60000); str+=str1;

t%=60000;

str1.Format("%d秒",t/1000); str+=str1;

AfxMessageBox(str);

=============================================================================== 如何在VC6.0中得到一个程序的运行时间,也就是这个程序耗费的时钟周期数// C和C++的时间编程

#include

#include

using namespace std; int main() {

time_t begin,end; begin=clock();

//这里加上你的代码

end=clock();

cout<<"runtime: "<

unix时间相关,也是标准库的这些在 1.timegm函数只是将struct tm结构转成time_t结构,不使用时区信息; time_t timegm(struct tm *tm);

2.mktime使用时区信息time_t mktime(struct tm *tm); timelocal 函数是GNU扩展的与posix函数mktime相当time_t timelocal (struct tm *tm);

3.gmtime函数只是将time_t结构转成struct tm结构,不使用时区信息; struct tm * gmtime(const time_t *clock);

4.localtime使用时区信息struct tm * localtime(const time_t *clock);

1.time获取时间,stime设置时间time_t t;t = time(&t);

2.stime其参数应该是GMT时间,根据本地时区设置为本地时间; int stime(time_t *tp)

3.UTC=true 表示采用夏时制;

4.文件的修改时间等信息全部采用GMT时间存放,不同的系统在得到修改时间后通过localtime转换成本地时间;

5.设置时区推荐使用setup来设置;

6.设置时区也可以先更变/etc/sysconfig/clock中的设置再将ln -fs /usr/share/zoneinfo/xxxx/xxx /etc/localtime 才能重效time_t只能表示68年的范围,即mktime只能返回1970-2038这一段范围的time_t 看看你的系统是否有time_t64,它能表示更大的时间范围

Window里面的一些不一样的CTime MFC类,好像就是把time.h封了个类,没扩展CTime t = GetCurrentTime(); SYSTEMTIME 结构包含毫秒信息typedef struct _SYSTEMTIME { WORD wYear; WORD wMonth; WORD wDayOfWeek; WORD wDay; WORD wHour; WORD wMinute;

相关文档
最新文档