gpt4 book ai didi

c++ - C `clock()` 函数只返回一个零

转载 作者:IT老高 更新时间:2023-10-28 22:07:56 26 4
gpt4 key购买 nike

C clock() 函数只返回一个零。我尝试使用不同的类型,但没有任何改进...这是一种高精度测量时间的好方法吗?

#include <time.h>
#include <stdio.h>

int main()
{
clock_t start, end;
double cpu_time_used;

char s[32];

start = clock();

printf("\nSleeping 3 seconds...\n\n");
sleep(3);

end = clock();

cpu_time_used = ((double)(end - start)) / ((double)CLOCKS_PER_SEC);

printf("start = %.20f\nend = %.20f\n", start, end);
printf("delta = %.20f\n", ((double) (end - start)));
printf("cpu_time_used = %.15f\n", cpu_time_used);
printf("CLOCKS_PER_SEC = %i\n\n", CLOCKS_PER_SEC);

return 0;
}
Sleeping 3 seconds...

start = 0.00000000000000000000
end = 0.00000000000000000000
delta = 0.00000000000000000000
cpu_time_used = 0.000000000000000
CLOCKS_PER_SEC = 1000000

平台:Intel 32 位、RedHat Linux、gcc 3.4.6

最佳答案

clock() 报告使用的 CPU 时间。 sleep() 不使用任何 CPU 时间。所以你的结果可能是完全正确的,只是不是你想要的。

关于c++ - C `clock()` 函数只返回一个零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2134363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com