测试一个函数的运行时间(C++)

 #include <ctime>

 static clock_t Start,Finish;

 Start=clock();

 fun();

 Finish = clock();
double time_second=double(Finish-Start)/CLOCKS_PER_SEC; printf(fun()运行时间:%fs",time_second);

用于测试一个函数的运行时间。

上一篇:python中实现延时回调普通函数示例代码


下一篇:Disruptor学习笔记