您好,登錄后才能下訂單哦!
import time
import threading
import logging
FORMAT = "%(asctime)s %(threadName)s %(thread)d %(message)s"
logging.basicConfig(format=FORMAT, level=logging.INFO)
def worker():
logging.info('in worker')
time.sleep(2)
t = threading.Timer(5, worker)
t.setName('w1')
# t.cancel() # 嘗試減少等待時間對比
t.start()
print(threading.enumerate())
# t.cancel() # 嘗試取消注釋對比
time.sleep(8) # 嘗試減少等待時間對比
print(threading.enumerate())
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。