本案例使用PyQt5多线程实现一个UI界面同时显示3个时间实时更新控件,从而直观地了解到Qt多线程是如何进行工作的。
from PyQt5.QtCore import QThread,pyqtSignal,QDateTime
from PyQt5.QtWidgets import QApplication,QDialog,QLineEdit,QVBoxLayout
import time
import sys
class Thread1(QThread): #创建线程1的具体实现
update_date=pyqtSignal(str) #设置信号槽,发送符串参数
def run(self):
while True:
data=QDateTime.currentDateTime() #读取系统时间
currentTime=data.toString("yyyy-MM-dd hh:mm:ss") #更改显示格式
self.update_date.emit(str(currentTime)) #触发信号槽,发送一个字符串信号
time.sleep(1) #设置休眠时间
class Thread2(QThread): #创建线程2的具体实现
update_date=pyqtSignal(str) #设置信号槽,发送字符串参数
def run(self):
while True:
data=QDateTime.currentDateTime() #读取系统时间
currentTime=data.toString("yyyy-MM-dd hh:mm:ss") #更改时间显示格式
self.update_date.emit(str(currentTime)) #触发信号槽,发送一个字符串信号
time.sleep(2) #设置休眠时间
class Thread3(QThread): #创建线程3的具体实现
update_date=pyqtSignal(str) #设置信号槽,发送字符串参数
def run(self):
while True:
data=QDateTime.currentDateTime() #读取系统时间
currentTime=data.toString("yyyy-MM-dd hh:mm:ss") #更改时间显示格式
self.update_date.emit(str(currentTime)) #触发信号槽,发送一个字符串信号
time.sleep(3) #设置休眠时间
class ThreadDialog(QDialog):#主窗口类
def __init__(self):
QDialog.__init__(self) #初始化
self.setWindowTitle('Qt多线程') #设置窗口标题
self.resize(400,100) #设置窗口大小
self.initUI()
def initUI(self):
self.lineEdit1 = QLineEdit(self) # 创建QLineEdit1控件
self.lineEdit2 = QLineEdit(self) # 创建QLineEdit2控件
self.lineEdit3 = QLineEdit(self) # 创建QLineEdit3控件
self.vbox = QVBoxLayout() # 创建垂直布局
self.vbox.addWidget(self.lineEdit1) # 添加控件lineEdit1
self.vbox.addWidget(self.lineEdit2) # 添加控件lineEdit2
self.vbox.addWidget(self.lineEdit3) # 添加控件lineEdit3
self.setLayout(self.vbox) # 设置本窗口布局为垂直布局
self.thread1 = Thread1() # 创建线程1
self.thread2 = Thread2() # 创建线程2
self.thread3 = Thread3() # 创建线程3
self.thread1.update_date.connect(self.lineEditDisplay1) # 线程1更新时间
self.thread2.update_date.connect(self.lineEditDisplay2) # 线程2更新时间
self.thread3.update_date.connect(self.lineEditDisplay3) # 线程3更新时间
self.thread1.start() # 启动线程1
self.thread2.start() # 启动线程2
self.thread3.start() # 启动线程3
def lineEditDisplay1(self,data): #信号槽函数,接收字符串参数
self.lineEdit1.setText(data)
def lineEditDisplay2(self,data): #信号槽函数,接收字符串参数
self.lineEdit2.setText(data)
def lineEditDisplay3(self,data): #信号槽函数,接收字符串参数
self.lineEdit3.setText(data)
if __name__ == '__main__':
app = QApplication(sys.argv)
th = ThreadDialog()
th.show()
sys.exit(app.exec_())