zoukankan      html  css  js  c++  java
  • C++ 精确计时类

    http://hi.baidu.com/ronyo/blog/item/ee7e71cf7d46c338f8dc61ad
    .html
       在一些程序中经常要统计一个算法/函数花费的时间,每次都重新写代码太麻烦了,索性自己用C++写了计时类,这个类统计的时间可以精确到微秒级别C++ <wbr>精确计时类


    例子:
    #include<iostream>
    using namespace std;
    ///////////
    #ifndef __MyTimer_H__
    #define __MyTimer_H__
    #include <windows.h>
    
    class MyTimer{
    private:
        int _freq;
        LARGE_INTEGER _begin;
        LARGE_INTEGER _end;
    public:
        long costTime;            // 花费的时间(精确到微秒)
    public:
        MyTimer(){
            LARGE_INTEGER tmp;
            QueryPerformanceFrequency(&tmp);
            _freq = tmp.QuadPart;
            costTime = 0;
        }
        void Start(){            // 开始计时
            QueryPerformanceCounter(&_begin);
        }
        void End(){                // 结束计时
            QueryPerformanceCounter(&_end);
            costTime = (long)((_end.QuadPart - _begin.QuadPart) * 1000000 / _freq);
        }
        void Reset(){            // 计时清0
            costTime = 0;
        }
    };
    #endif 
    /////////////////
    int main(){
    	MyTimer mt;
    	mt.Start();
    	int i;
    	int sum=0;
    	for(i=0;i<12345678;i++){
    		sum=sum+i;
    	}
    	mt.End();
    	cout<<"Total cost time:"<<mt.costTime<< " us" << endl;
    	return 0;
    }





  • 相关阅读:
    Linux常用命令1
    Linux常用命令
    java的接口和抽象类区别
    字符串的全排列
    字符串的全组合
    Mysql范式
    同步 异步 阻塞 非阻塞概念区分
    死锁产生的条件以及解决方法
    Mysql存储引擎MyIsAM和InnoDB区别
    SLES documentation
  • 原文地址:https://www.cnblogs.com/gongpixin/p/4477388.html
Copyright © 2011-2022 走看看