#includeclock_t start,stop,overhead,t;start=clock();stop=clock();overhead=start-stop;start=clock();****************************中间是要测试的代码****************************stop=clock();t=stop-start-overhead;
在profiler中设置Enable Clock以及时钟周期,完了单步运行后就能看见结果。
本文共 310 字,大约阅读时间需要 1 分钟。
#includeclock_t start,stop,overhead,t;start=clock();stop=clock();overhead=start-stop;start=clock();****************************中间是要测试的代码****************************stop=clock();t=stop-start-overhead;
在profiler中设置Enable Clock以及时钟周期,完了单步运行后就能看见结果。
转载于:https://my.oschina.net/dongdong2012/blog/89916