作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个运行微 Controller 仿真器的C++程序。运行模拟器的线程在这样的循环中这样做:
while(should_run) {
simulator->RunSingleClockCycle();
}
最佳答案
在常规硬件上,您永远都不会获得纳秒级的计时。例如,在我的系统上运行以下代码(不考虑竞争条件):
#include <thread>
#include <chrono>
#include <future>
#include <iostream>
int main()
{
unsigned int counter = 0;
auto res = std::async(std::launch::async, [&]()
{
while (true)
{
std::cout << "Count : " << counter << '\n';
counter = 0;
std::this_thread::sleep_for(std::chrono::seconds(1));
}
});
auto timetoWait = 1'000'000'000 / 16'000'000;
while (true)
{
++counter;
std::this_thread::sleep_for(std::chrono::nanoseconds(timetoWait));
}
}
关于c++ - 纳秒级C++程序空转/节流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61856148/
根据这个问题:Fractional power of units of measures in F# F# 中的度量单位不支持分数幂。 在我的应用程序中,有时考虑带有度量前缀的数据是有益的,例如当处理
我是一名优秀的程序员,十分优秀!