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.
有没有一种简单的方法可以在 Qt 中的给定时间调用事件?还是我需要执行一些循环来检查时间?
任何关于如何做到这一点的建议将不胜感激,即使它不使用 Qt
QTimer会有所帮助。
像这样的东西:
QTImer *timer = new QTimer(this); timer->setInterval(1000); connect(timer, SIGNAL(timeout()), this, SLOT(timerTimeout()));