C++获取代码运行时间

C++获取代码运行时间

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

 

第一种:使用GetTickCount函数

 

#include<iostream>

#include<windows.h>

using namespace std;

 

int main()

  DWORD start_time=GetTickCount();

    { 

     //此处为被测试代码

 

    } 

  DWORD end_time=GetTickCount(); 

  cout<<"The run time is:"<<(end_time-start_time)<<"ms!"<<endl;//输出运行时间

  system("pause");

  return 0; 

} GetTickCount函数返回从系统运行到现在所经历的时间(类型为 DWORD),单位为ms,因为DWORD表示范围的限制,所以使用此种方法存在限制,即系统的运行时间的 ms表示不能超出DWORD的表示范围。   timeGetTime()基本等于GetTickCount(),但是精度更高

 

第一种:使用clock()函数

 

#include<iostream>

#include<time.h>

using namespace std;

 

int main()

  clock_t start_time=clock();

    { 

     //此处为被测试代码

 

    } 

  clock_t end_time=clock();

 

  cout<<"The run time is:"<<static_cast<double>( end_time- start_time)/ CLOCK_PER_SEC *1000<<"ms!"<<endl;//输出运行时间

  system("pause");

  return 0; 

} clock_t,clock()定义于time.h中,clock()返回从程序运行时刻开始的时钟周期数,类型为long. CLOCK_PER_SEC定义了每秒钟包含多少个时钟单元数,因为计算 ms,所以*1000

 

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

 用clock()函数,得到系统启动以后的毫秒级时间,然后除以CLOCKS_PER_SEC,就可以换成“秒”,标准c函数。大部分情况我觉得这个方法就够用了。

 

<script type="text/javascript"></script>

1.如果只是要计算程序运行的时间,不需要那么复杂。

<windows.h> 中的 GetTickCount() 就是干这个的。  

TimeStart=GetTickCount();

   .......

   TimeEnd=GetTickCount();

   TimeUsed=TimeEnd-TimeStart;

2. #include<stdio.h>

#include<time.h>

#include<conio.h>

int main()

{

time_t stime , etime ;

time( &stime ); /* get start time */

getch(); /* Access */

time( &etime ); /* get end time */

printf( "%ld\n" , etime - stime );

getch();

return 0;

}

3. class CTimer

{

public:

CTimer() {QueryPerformanceFrequency(&m_Frequency); Start();}

void Start() {QueryPerformanceCounter(&m_StartCount);}

double End() {LARGE_INTEGER CurrentCount;QueryPerformanceCounter(&CurrentCount);return double(CurrentCount.LowPart - m_StartCount.LowPart) / (double)m_Frequency.LowPart;}

private:

LARGE_INTEGER m_Frequency;

LARGE_INTEGER m_StartCount;

};  

 

4. VC的话有profile,在链接属性页勾选profile项,然后profile(在编译菜单下),各个函数时间都出来了

 

5. #include <iostream>

#include <ctime>

using namespace std;

int max(int x,int y)

{

return (x>y)?x:y;

}

int main()

{

const double begin=(double)clock()/CLK_TCK;

for(int i=10000;i>0;i--)

for(int j=10000;j>0;j--)

max(i,j);

const double end=(double)clock()/CLK_TCK;

cout <<begin<<" "<<end;

return 0;

}

6.要最精确的有

LARGE_INTEGER limtp;

QueryPerformanceFrequency(&limtp);//获得当前的计数频率,即每秒进行多少次计数

QueryPerformanceCounter(&limtp);//获取当前计数次数

基于cpu级的

时间是

(计数获取计数次数 - 开始获取计数次数)/(用QueryPerformanceFrequency获取的limtp.QuadPart)   

    

 

下面列出简单的例子

#include <ctime> //计时用的头文件

#include <iostream>

using namespace std;

int main()

{

    time_t start,end,time; /*注意计时所用的变量名称*/

    /*程序开始执行,开始计时*/

    start=clock();

    /*程序执行过程……*/

    for(int i=0;i<=100000;i++) cout << i << ' ';

    cout << endl;

    /*程序结束执行,结束计时*/

    end=clock();

    time=end-start;//这里的时间是计算机内部时间

    cout << endl << ""time:" << time << endl;

    system("pause");

    return 0;

}

其它:

Include head file time.h, though it's a C include file, C++ certainly can use it.
Under C++, you can include <ctime> instead of <time.h>
_____________________________________________________

time.h


@函数名称:     localtime
函数原型:     struct tm *localtime(const time_t *timer)
函数功能:     返回一个以tm结构表达的机器时间信息
函数返回:     以tm结构表达的时间,结构tm定义如下:
struct tm{
      int tm_sec;
      int tm_min;
      int tm_hour;
      int tm_mday;
      int tm_mon;
      int tm_year;
      int tm_wday;
      int tm_yday;
      int tm_isdst;
    };
参数说明:     timer-使用time()函数获得的机器时间
所属文件:     <time.h>

#include <time.h>
#include <stdio.h>
#include <dos.h>
int main()
{
    time_t timer;
    struct tm *tblock;
    timer=time(NULL);
    tblock=localtime(&timer);
    printf("Local time is: %s",asctime(tblock));
    return 0;
}


@函数名称:     asctime
函数原型:     char* asctime(struct tm * ptr)
函数功能:     得到机器时间(日期时间转换为ASCII码)
函数返回:     返回的时间字符串格式为:星期,月,日,小时:分:秒,年
参数说明:     结构指针ptr应通过函数localtime()和gmtime()得到
所属文件:     <time.h>

#include <stdio.h>
#include <string.h>
#include <time.h>
int main()
{
    struct tm t;
    char str[80];
    t.tm_sec=1;
    t.tm_min=3;
    t.tm_hour=7;
    t.tm_mday=22;
    t.tm_mon=11;
    t.tm_year=56;
    t.tm_wday=4;
    t.tm_yday=0;
    t.tm_isdst=0;
    strcpy(str,asctime(&t));
    printf("%s",str);
    return 0;
}


@函数名称:     ctime
函数原型:     char *ctime(long time)
函数功能:     得到日历时间
函数返回:     返回字符串格式:星期,月,日,小时:分:秒,年
参数说明:     time-该参数应由函数time获得
所属文件:     <time.h>

#include <stdio.h>
#include <time.h>
int main()
{
    time_t t;
    time(&t);
    printf("Today's date and time: %s",ctime(&t));
    return 0;
}


@函数名称:     difftime
函数原型:     double difftime(time_t time2, time_t time1)
函数功能:     得到两次机器时间差,单位为秒
函数返回:     时间差,单位为秒
参数说明:     time1-机器时间一,time2-机器时间二.该参数应使用time函数获得
所属文件:     <time.h>

#include <time.h>
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main()
{
    time_t first, second;
    clrscr();
    first=time(NULL);
    delay(2000);
    second=time(NULL);
    printf("The difference is: %f seconds",difftime(second,first));
    getch();
    return 0;
}


@函数名称:     gmtime
函数原型:     struct tm *gmtime(time_t *time)
函数功能:     得到以结构tm表示的时间信息
函数返回:     以结构tm表示的时间信息指针
参数说明:     time-用函数time()得到的时间信息
所属文件:     <time.h>

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <dos.h>
char *tzstr="TZ=PST8PDT";
int main()
{
    time_t t;
    struct tm *gmt, *area;
    putenv(tzstr);
    tzset();
    t=time(NULL);
    area=localtime(&t);
    printf("Local time is:%s", asctime(area));
    gmt=gmtime(&t);
    printf("GMT is:%s", asctime(gmt));
    return 0;
}


@函数名称:     time
函数原型:     time_t time(time_t *timer)
函数功能:     得到机器的日历时间或者设置日历时间
函数返回:     机器日历时间
参数说明:     timer=NULL时得到机器日历时间,timer=时间数值时,用于设置日历时间,time_t是一个long类型
所属文件:     <time.h>

#include <time.h>
#include <stdio.h>
#include <dos.h>
int main()
{
    time_t t;
    t=time();
    printf("The number of seconds since January 1,1970 is %ld",t);
    return 0;
}


@函数名称:     tzset
函数原型:     void tzset(void)
函数功能:     UNIX兼容函数,用于得到时区,在DOS环境下无用途
函数返回:
参数说明:
所属文件:     <time.h>

#include <time.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
    time_t td;
    putenv("TZ=PST8PDT");
    tzset();
    time(&td);
    printf("Current time=%s",asctime(localtime(&td)));
    return 0;
}

 

http://jsx112.iteye.com/blog/1226674

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值