gpt4 book ai didi

C++ gettimeofday() 返回相同的值

转载 作者:太空宇宙 更新时间:2023-11-04 07:21:15 27 4
gpt4 key购买 nike

/*
* Returns time in s.usec
*/
float mtime()
{
struct timeval stime;
gettimeofday(&stime,0x0);
return (float)stime.tv_sec+((float)stime.tv_usec)/1000000000;
}

main(){
while(true){
cout<<setprecision(15)<<mtime()<<endl;
// shows the same time irregularly for some reason and can mess up triggers
usleep(500000);
}
}

为什么不规律地显示同一时间? (在 ubuntu 64 位和 C++ 上编译)还有哪些其他标准方法可用于生成毫秒精度的 unix 时间戳?

最佳答案

floatbetween 6 and 9 decimal digits of precision .

所以如果整数部分是例如1,391,432,494(我写这篇文章时的 UNIX 时间;需要 10 位数字),小数部分已经没有数字了。不太好,这就是 float 失败的原因。

跳转到 double gives you 15 digits因此,只要您可以假设整数部分是 UNIX 时间戳,即自 1970 年以来的秒数,这似乎就足够了,因为这意味着它不太可能很快使用更多的数字。

关于C++ gettimeofday() 返回相同的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21527948/

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