gpt4 book ai didi

c++ - 为什么 GetLocalTime(&sys);显示奇怪的结果?

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

我想实时获取本地时间,代码和结果如下,显示奇怪;

int main() {
while (true) {
char sentdata[64] = { 0 };
GetLocalTime(&sys);
sprintf(sentdata, "A,%02d:%02d:%02d.%03d,B\n", sys.wHour, sys.wMinute, sys.wSecond, sys.wMilliseconds);

cout << sentdata << endl;
}
return 0;
}

enter image description here

我在其他电脑上试过相同的代码,显示的结果如下,它可以每毫秒显示一次。

enter image description here

为什么 tmie 在某些循环中相同?我认为每个循环的时间应该不同。

最佳答案

这是 Windows 系统上的典型计时行为,即使使用高分辨率时钟也是如此:时间仅在大约 16 毫秒的跳跃中增加。

有关 Windows 上的准确计时,请参阅 this answer

关于c++ - 为什么 GetLocalTime(&sys);显示奇怪的结果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33665248/

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