当我们在Python编程过程中需要多个输出任务时,为了提高效率,我们可以使用多线程并行处理。你知道如果我们穿多线程吗?本文展示了Python创建多线程的两种方法:1、继承Thread类,重写其run()方法;2、用函数创建多线程。
方法一:继承Thread类,重写其run()方法
importtime fromthreadingimportThread classMyThread(Thread): def__init__(self,name='Python3'): super().__init__() self.name=name defrun(self): foriinrange(2): print("Hello",self.name) time.sleep(1)
注意:run()方法相当于第一种方法中的线程函数,可以在start()后编写所需的业务逻辑代码。
方法二:用函数创建多线程
在Python3中,Python提供了内置模块threading.Thread,我们可以很容易地创建多线程。
实例化threading.在Thread对象中,将线程要执行的任务函数作为参数输入线程。
#-*-coding:utf-8-*- importthread importtime defA(para): foriinrange(5): printpara time.sleep(0.5) defB(para): foriinrange(5): printpara time.sleep(0.2) if__name__='__main__': thread.start_new_thread(A,('我是线程A',)) thread.start_new_thread(B,('我是B'的线程;,)) while1: pass
以上是python创建多线程的两种方法,您可以选择其中一种方法。更多python学习建议:python教程。