本文介绍了如何以毫秒为单位的函数没有的boost ::计时器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用升压1.46其中不包括升压::计时器,还有什么其他办法能我一次我的功能。
I am using boost 1.46 which does not include boost::timer, What other way can I time my functions.
我目前这样做:
time_t now = time(0);
<some stuff>
time_t after = time(0);
cout << after - now << endl;
,但它只是给出秒的回答,因此,如果该功能将与所述; 1秒显示为0。
but it just gives the answer in seconds, so if the function takes < 1s it displays 0.
感谢
推荐答案
在Linux中:
#include <ctime>
#include <iostream>
int
main(int, const char**)
{
std::clock_t start;
start = std::clock();
// your test
std::cout << "Time: " << (std::clock() - start) / (double)(CLOCKS_PER_SEC / 1000) << " ms" << std::endl;
return 0;
}
好运;)
这篇关于如何以毫秒为单位的函数没有的boost ::计时器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!