当我使用 Qt 5.3.2 运行以下代码时,剩余时间设置为 -1371648957。
QTimer *timer = new QTimer(this);
timer->setSingleShot(true);
timer->start(100);
qDebug() << "remaining" << timer->remainingTime();
如果我之后继续在循环中打印剩余时间,负值只会增加,因此timeout()
永远不会被触发。这对我来说真的没有意义。
为了提供一些上下文,这段代码在一个单独的线程中运行,并且 QTimer 不是在线程对象的构造函数中创建的。
这是一些更新的代码,可以使事情更清楚。
void MainObject::SomeMethod(){
// main thread
ObjectWithTimer *owt = new ObjectWithTimer();
QThread *someThread = new QThread();
owt->moveToThread(someThread);
connect(someThread, SIGNAL(started()), owt, SLOT(doStuff()));
someThread->start();
}
void ObjectWithTimer::doStuff(){
while(condition){
// do various stuff
// among other things emit SIGNALS to the main thread, that are received
// so the event loop in the thread is running
QTimer *timer = new QTimer(this);
timer->setSingleShot(true);
timer->start(100);
qDebug() << "remaining" << timer->remainingTime();
connect(timer, SIGNAL(timeout()), this, SLOT(onClientTimeoutTest()));
}
}
void ObjectWithTimer::onClientTimeoutTest(){
// this method is of course never fired, since the remaining time never reaches 0
}
我已经检查了计时器创建是否在单独的线程中正确运行,并且线程内的 Qts 事件循环正在工作,因为我可以emit
发出信号表明主线程接收。
如果我这样设置计时器也没有区别
timer->setSingleShot(true);
timer->setInterval(100);
timer->start();
如果我将秒数更改为 100000 或 0,则剩余时间只会略微更改为 -1374002988,但当我重新启动应用程序时它仍然会发生这种情况,但长度保持不变。
我还检查了timer->remainingTime()
在线调试器,内部inter
变量正确设置为 100。
这可能是一个内存地址或类似的东西吗?