Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 C++ 程序来打印两个事件开始时的时间戳(或系统时间)。但这两个时间之间的差异始终是 0 或 15ms。这是因为 Windows XP 计时器每秒更新 64 次,即每 15.625 毫秒一次。所以我没有办法知道0到15.625ms之间的任何延迟。
有没有办法解决这个限制?
提前致谢。
查看QueryPerformanceCounter以获得更高的分辨率。