What is the best way to exit out of a loop after an elapsed time of 30ms in C++(在 C++ 中经过 30 毫秒后退出循环的最佳方法是什么)
问题描述
在 C++ 中退出循环的最佳方法是尽可能接近 30 毫秒.轮询提升:microsec_clock ?轮询 QTime ?还有什么?
What is the best way to exit out of a loop as close to 30ms as possible in C++. Polling boost:microsec_clock ? Polling QTime ? Something else?
类似于:
A = now;
for (blah; blah; blah) {
Blah();
if (now - A > 30000)
break;
}
它应该适用于 Linux、OS X 和 Windows.
It should work on Linux, OS X, and Windows.
循环中的计算用于更新模拟.每 30 毫秒,我想更新一次视口.
The calculations in the loop are for updating a simulation. Every 30ms, I'd like to update the viewport.
推荐答案
此链接中的代码片段示例几乎可以满足您的需求:
The code snippet example in this link pretty much does what you want:
http://www.cplusplus.com/reference/clibrary/ctime/时钟/
改编自他们的例子:
void runwait ( int seconds )
{
clock_t endwait;
endwait = clock () + seconds * CLOCKS_PER_SEC ;
while (clock() < endwait)
{
/* Do stuff while waiting */
}
}
这篇关于在 C++ 中经过 30 毫秒后退出循环的最佳方法是什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中经过 30 毫秒后退出循环的最佳方法是什么
基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01