PyQt4 QTimer 不工作

PyQt4 QTimer doesn't work

我是 PyQt4 QTimer 的新手。我只是从某处复制代码,但似乎不起作用。有人可以帮我解决这个问题吗?

from PyQt4 import QtCore, QtGui
from PyQt4.QtGui import *
from PyQt4.QtCore import *



def startCount(): 
    timer.start(1000)



def showNum():
    global count
    count = count + 1 
    return count

timer = QtCore.QTimer()
count = 0
timer.timeout.connect(showNum)
startCount()

我希望看到计数随时间递增,但控制台没有显示任何输出。有人可以解释一下吗?

如果没有 运行 事件循环,QTimer 将无法工作。试试这个:

import sys
from PyQt4 import QtCore, QtGui

def startCount():
    timer.start(1000)

def showNum():
    global count
    count = count + 1
    print(count)
    if count > 10:
        app.quit()

app = QtCore.QCoreApplication(sys.argv)

timer = QtCore.QTimer()
count = 0
timer.timeout.connect(showNum)
startCount()

app.exec_()