定时器含义:
经过多长时间起一个线程
定时器函数
threading.Timer(时间,function函数,args函数 )
例子
'''定时器'''
import threading
import time
def run():
print('定时器启动了')
print(threading.current_thread()) # 查看线程
timer = threading.Timer(5, run)
timer.start()
if __name__ == '__main__':
t1 = threading.Timer(5, function=run)
t1.start()
while True: # 对多线程进行测试
time.sleep(10)
print('主线程')
文章评论