首页 > 编程 > Python > 正文

python使用线程封装的一个简单定时器类实例

2020-01-04 19:15:04
字体:
来源:转载
供稿:网友

这篇文章主要介绍了python使用线程封装的一个简单定时器类,实例分析了Python线程的使用及定时器类的实现技巧,需要的朋友可以参考下

本文实例讲述了python使用线程封装的一个简单定时器类。分享给大家供大家参考。具体实现方法如下:

 

 
  1. from threading import Timer 
  2. class MyTimer: 
  3. def __init__(self): 
  4. self._timer= None 
  5. self._tm = None 
  6. self._fn = None 
  7. def _do_func(self): 
  8. if self._fn: 
  9. self._fn() 
  10. self._do_start() 
  11. def _do_start(self): 
  12. self._timer = Timer(self._tm, self._do_func) 
  13. self._timer.start() 
  14. def start(self, tm, fn): 
  15. self._fn = fn 
  16. self._tm = tm 
  17. self._do_start() 
  18. def stop(self): 
  19. try
  20. self._timer.cancel() 
  21. except
  22. pass 
  23. def hello(): 
  24. from datetime import datetime 
  25. print("hello world!", datetime.now()) 
  26. if __name__ == '__main__'
  27. mt = MyTimer() 
  28. mt.start(2, hello) 
  29. for i in range(10): 
  30. import time 
  31. time.sleep(1
  32. mt.stop() 

希望本文所述对大家的Python程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表