Python GUI(4)多线程

Python GUI(4)多线程

多线程

  • 遇到耗时操作,使用Thread(QThread)写在run()方法里

操作

  1. 定义一个线程
  1. 开启线程
# 函数 def thread_job(): print('This is a thread of %s' % threading.current_thread()) # 主函数 def main(): thread = threading.Thread(target=thread_job,) # 定义线程 thread.start() # 让线程开始工作 if __name__ == '__main__': main()