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 毫秒后退出循环的最佳方法是什么
基础教程推荐
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- CString 到 char* 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
