什么是测量 Windows 平台上本机 C++ 代码的亚秒级经过时间的好方法(我正在使用 Windows Vista,Visual Studio 2010)
我试过使用
#include <ctime>
int main()
{
clock_t start = clock();
... some code
clock_t end = clock();
double cpu_time = static_cast<double>(end - start)/CLOCKS_PER_SEC;
}
但cpu_time
总是0
。
谢谢 !