多线程Thread类
Posted cyz123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程Thread类相关的知识,希望对你有一定的参考价值。
为了让线程更好的封装,可以使用threading模块下的Thread类,继承这个类,然后实现run方法,线程就会自动运行run方法中的代码。
示例如下:
#encoding: utf-8
import threading
import time
class CodingThread(threading.Thread):
def run(self):
for x in range(3):
print(‘正在写代码%s‘%threading.current_thread())
time.sleep(1)
class DrawingThread(threading.Thread):
def run(self):
for j in range(3):
print(‘正在画图%s‘%threading.current_thread())#打印当前线程的名字
time.sleep(1)
def multi_thread():
t1 = CodingThread()
t2 = DrawingThread()
t1.start()
t2.start()
if __name__ == "__main__":
multi_thread()
以上是关于多线程Thread类的主要内容,如果未能解决你的问题,请参考以下文章
Python爬虫编程思想(138):多线程和多进程爬虫--从Thread类继承
Python爬虫编程思想(138):多线程和多进程爬虫--从Thread类继承