import threading
import time as time1
from datetime import time
可以通过写一个类继承Thread类,来创建属于自己的线程类。
1.声明类继承Thread
2.重写run方法。这个方法中的任务就是需要在子线程中执行的任务
3.需要线程对象的时候,创建当前声明的类的对象;然后通过start方法在子线程中去执行run方法中的任务
class DownloadThread(threading.Thread):
"""下载类"""
def __init__(self, file):
super().__init__()
self.file = file
def run(self):
print('开始下载:'+self.file)
print('run:', threading.current_thread())
time1.sleep(10)
print('%s下载结束' % self.file)
def main():
# 获取当前线程
print(threading.current_thread())
t1 = DownloadThread('沉默的羔羊.mp4')
t2 = DownloadThread('恐怖游轮.mp4')
# 调用start的时候会自动在子线程中调用run方法
t1.start()
t2.start()
# 注意:如果直接用对象调用run方法,run方法中的任务会在主线程执行
# t1.run()