gpt4 book ai didi

Qt微秒定时器实现

转载 作者:行者123 更新时间:2023-12-02 04:14:55 25 4
gpt4 key购买 nike

在 Qt 中所有的类都有毫秒计时器。我需要使用硬件定时器实现微秒定时器,否则任何 Qt 类都不支持微秒定时器。

谁能帮我如何在 Qt 应用程序代码中实现微秒定时器?

最佳答案

你应该使用 QElapsedTimer ,具有纳秒精度,如下所示:

QElapsedTimer timer;
timer.start();

foo();//TODO your stuff

qDebug() << "The foo() function took" << timer.nsecsElapsed() << "nanoseconds";

关于Qt微秒定时器实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34409892/

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