要讓計時器再次使用,可以通過創建一個新的`Timer`對象并啟動它來實現。以下是一個示例代碼:
import threading def my_function():????print(“Timer?expired!”) #?創建一個計時器對象 timer?=?threading.Timer(5.0,?my_function) #?啟動計時器 timer.start() #?取消計時器 timer.cancel() #?創建一個新的計時器對象 new_timer?=?threading.Timer(10.0,?my_function) #?啟動新的計時器 new_timer.start()
在上面的示例中,我們首先創建了一個計時器對象并啟動它,然后使用cancel()
方法取消了計時器。接下來,我們創建了一個新的計時器對象,并使用start()
方法啟動它。這樣就實現了使計時器再次使用的效果。