要从不同的线程/类启用计时器,您可以使用多线程和计时器库。以下是一个使用Python的threading
库和time
库的示例:
import threading
import time
class TimerThread(threading.Thread):
def __init__(self, interval, function, *args, **kwargs):
super().__init__(*args, **kwargs)
self.interval = interval
self.function = function
self.finished = threading.Event()
def run(self):
while not self.finished.is_set():
self.function()
time.sleep(self.interval)
def stop(self):
self.finished.set()
def my_function():
print("Hello, I'm a function!")
# 创建一个计时器线程,每隔5秒运行一次my_function
timer_thread = TimerThread(5, my_function)
# 开始计时器线程
timer_thread.start()
# 运行一段时间后停止计时器线程
time.sleep(15)
timer_thread.stop()
在这个示例中,我们定义了一个名为TimerThread
的类,它继承自threading.Thread
。TimerThread
的构造函数接受一个时间间隔、一个要执行的函数以及任何其他要传递给threading.Thread
的参数。TimerThread
的run
方法在每个时间间隔上运行给定的函数。
我们还定义了一个名为my_function
的简单函数,它只是打印一条消息。然后,我们创建一个TimerThread
实例,将时间间隔设置为5秒,并将my_function
作为要执行的函数。最后,我们启动计时器线程,让它运行15秒,然后停止它。
这个示例展示了如何从不同的线程/类启用计时器。您可以根据自己的需求修改这个示例,以适应您的特定用例。
领取专属 10元无门槛券
手把手带您无忧上云