首页 > 其他 > 详细

统计代码运行时间计时器

时间:2019-05-30 23:58:34      阅读:166      评论:0      收藏:0      [点我收藏+]

linux

#include <sys/time.h>  
 
#include <iostream>  
 
#include <time.h>  
 
double get_wall_time()  
 
{  
 
    struct timeval time ;  
 
    if (gettimeofday(&time,NULL)){  
 
        return 0;  
 
    }  
 
    return (double)time.tv_sec + (double)time.tv_usec * .000001; 
 
}  
 
  
 
int main()  
 
{  
 
    unsigned int t = 0;  
 
    double start_time = get_wall_time(); 
 
    while(t++ < 10e+6);  
 
    double end_time = get_wall_time() ;
 
    std::cout<<"循环耗时为:"<<end_time-start_time<<"ms";  
 
    return 0;  
 
} 

windows

#include <windows.h>  
 
#include <iostream>  
 
  
 
int main()  
 
{  
 
    DWORD start, stop;  
 
    unsigned int t = 0;  
 
    start = GetTickCount();  
 
    while (t++ < 10e+6);  
 
    stop = GetTickCount();  
 
    printf("time: %lld ms\n", stop - start);  
 
    return 0;  
 
}  

 

统计代码运行时间计时器

原文:https://www.cnblogs.com/Malphite/p/10952791.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!