码迷,mamicode.com
首页 > 其他好文 > 详细

统计代码运行时间计时器

时间:2019-05-31 00:53:20      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:计时   运行时   lld   div   class   time()   count   运行   eof   

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;  
 
}  

 

统计代码运行时间计时器

标签:计时   运行时   lld   div   class   time()   count   运行   eof   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!