如何使用
- #include "sperformance.h"
-
- #include <iostream>
- #include <boost/thread.hpp>
-
- int main(int argc, char** argv)
- {
- kagula::PerformanceTest pt;
-
- {
- pt.start();
- boost::this_thread::sleep(boost::posix_time::milliseconds(0));
- pt.stop();
-
- std::cout << "First time:" << pt.toString() << std::endl << std::endl;
- }
-
-
- {
- pt.start();
- boost::this_thread::sleep(boost::posix_time::milliseconds(100));
- pt.stop();
-
- std::cout << "Second time:" << pt.toString() << std::endl << std::endl;
- }
-
-
- {
- pt.start();
- boost::this_thread::sleep(boost::posix_time::milliseconds(1000));
- pt.stop();
-
- std::cout << "Third time:" << pt.toString() << std::endl << std::endl;
- }
-
- std::cin.get();
-
- return 0;
- }
依赖的头文件
- #ifndef _SPERFORMANCE_H_
- #define _SPERFORMANCE_H_
-
- #include <string>
- #include <list>
-
- #include <boost/thread/mutex.hpp>
- #include <boost/date_time/posix_time/posix_time.hpp>
-
- namespace kagula
- {
-
- struct PerformanceTest
- {
- PerformanceTest() :m_lastFPS(.0f),
- m_minElapsedTime(1000.0f), m_maxElapsedTime(.0f), m_lastElapsedTime(.0f){}
- std::string toString();
-
- void start();
- void stop();
-
- float getMinFPS();
- float getMaxFPS();
- float getLastFPS();
- float getAvgFPS();
-
- float getElapsedTime();
- float getAvgTime();
- private:
- float m_minFPS;
- float m_maxFPS;
- float m_lastFPS;
- float m_avgFPS;
-
-
- float m_minElapsedTime;
- float m_maxElapsedTime;
- float m_avgElapsedTime;
- float m_lastElapsedTime;
-
- std::list<float> m_listHistoryElapsedTime;
-
- void setInMilliSecond(unsigned long long milliSecond);
-
- boost::mutex m_mutexRW;
- boost::posix_time::ptime m_timeStart;
- };
-
-
- }
- #endif
依赖的实现文件
http://blog.csdn.net/lee353086/article/details/53741514
一个简单的C++性能测试工具(ms级别)
原文:http://www.cnblogs.com/findumars/p/7635978.html