PyQt5.Qtimer模块调用返回QObject::startTimer: Timers can only be used with threads started with QThread的问题

最近写一个程序需要周期性执行任务,用pyqt中的Qtimer实现,查了网上的例程,写了一个测试程序验证Qtimer的功能。

from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QTimer
import sys

def work():
    print("hello world")

if __name__ == "__main__":
    t = QTimer()
    t.start(1000)
    t.timeout.connect(work)

但是执行时会一直返回错误
QObject::startTimer: Timers can only be used with threads started with QThread

再次查阅了别人的例程后,改为:

from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QTimer
import sys

def work():
    print("hello world")

if __name__ == "__main__":
    app = QApplication(sys.argv)
    t = QTimer()
    t.start(200)
    t.timeout.connect(work)
    sys.exit(app.exec_())

增加 app = QApplication(sys.argv) 和 sys.exit(app.exec_()) 这两句后,测试程序工作正常

"C:\Program Files\Python37\python.exe" D:/github/raisecom-itn-auto-upgrade/test-qtimer.py
hello world
hello world
hello world
hello world
hello world
hello world
hello world
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值