python通过线程实现定时器timer的方法


Posted in Python onMarch 16, 2015

本文实例讲述了python通过线程实现定时器timer的方法。分享给大家供大家参考。具体分析如下:

这个python类实现了一个定时器效果,调用非常简单,可以让系统定时执行指定的函数

下面介绍以threading模块来实现定时器的方法。

使用前先做一个简单试验:

import threading
def sayhello():
    print "hello world"
    global t    #Notice: use global variable!
    t = threading.Timer(5.0, sayhello)
    t.start()
t = threading.Timer(5.0, sayhello)
t.start()

运行结果如下:

>python hello.py
hello world
hello world
hello world

下面是定时器类的实现:

class Timer(threading.Thread):
    """
    very simple but useless timer.
    """
    def __init__(self, seconds):
        self.runTime = seconds
        threading.Thread.__init__(self)
    def run(self):
        time.sleep(self.runTime)
        print "Buzzzz!! Time's up!"
class CountDownTimer(Timer):
    """
    a timer that can counts down the seconds.
    """
    def run(self):
        counter = self.runTime
        for sec in range(self.runTime):
            print counter
            time.sleep(1.0)
            counter -= 1
        print "Done"
class CountDownExec(CountDownTimer):
    """
    a timer that execute an action at the end of the timer run.
    """
    def __init__(self, seconds, action, args=[]):
        self.args = args
        self.action = action
        CountDownTimer.__init__(self, seconds)
    def run(self):
        CountDownTimer.run(self)
        self.action(self.args)
def myAction(args=[]):
    print "Performing my action with args:"
    print args
if __name__ == "__main__":
    t = CountDownExec(3, myAction, ["hello", "world"])
    t.start()

以上代码在Python 2.5.4中运行通过

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

Python 相关文章推荐
Python多线程编程(一):threading模块综述
Apr 05 Python
python遍历文件夹下所有excel文件
Jan 03 Python
浅谈python中str字符串和unicode对象字符串的拼接问题
Dec 04 Python
python实现在遍历列表时,直接对dict元素增加字段的方法
Jan 15 Python
python 多线程重启方法
Feb 18 Python
VPS CENTOS 上配置python,mysql,nginx,uwsgi,django的方法详解
Jul 01 Python
python支付宝支付示例详解
Aug 22 Python
Python dict的常用方法示例代码
Jun 23 Python
解决tensorflow/keras时出现数组维度不匹配问题
Jun 29 Python
python调用有道智云API实现文件批量翻译
Oct 10 Python
Python读写csv文件流程及异常解决
Oct 20 Python
Python3 如何开启自带http服务
May 18 Python
python每隔N秒运行指定函数的方法
Mar 16 #Python
python实现登陆知乎获得个人收藏并保存为word文件
Mar 16 #Python
Python标准库urllib2的一些使用细节总结
Mar 16 #Python
python实现查询苹果手机维修进度
Mar 16 #Python
python让图片按照exif信息里的创建时间进行排序的方法
Mar 16 #Python
python实现简单的计时器功能函数
Mar 14 #Python
python将图片文件转换成base64编码的方法
Mar 14 #Python
You might like
浅析php插件 Simple HTML DOM 用DOM方式处理HTML
2013/07/01 PHP
浅析PHP的静态成员函数效率更高的原因
2014/06/13 PHP
PHP通过内置函数memory_get_usage()获取内存使用情况
2014/11/20 PHP
iframe 自适应高度[在IE6 IE7 FF下测试通过]
2009/04/13 Javascript
JavaScript中的16进制字符(改进)
2011/11/21 Javascript
jquery简单实现鼠标经过导航条改变背景图
2013/12/17 Javascript
jquery移动节点实例
2015/01/14 Javascript
纯js模拟div层弹性运动的方法
2015/07/27 Javascript
JavaScript获取当前运行脚本文件所在目录的方法
2016/02/03 Javascript
JS 通过系统时间限定动态添加 select option的实例代码
2016/06/09 Javascript
jQuery dataTables与jQuery UI 对话框dialog的使用教程
2016/09/02 Javascript
JS实现页面数据无限加载
2016/09/13 Javascript
基于JS实现移动端向左滑动出现删除按钮功能
2017/02/22 Javascript
node使用Koa2搭建web项目的方法
2017/10/17 Javascript
详解Vue中localstorage和sessionstorage的使用
2017/12/22 Javascript
解决父组件将子组件作为弹窗调用只执行一次created的问题
2020/07/24 Javascript
vue-cli+webpack项目打包到服务器后,ttf字体找不到的解决操作
2020/08/28 Javascript
js实现炫酷光感效果
2020/09/05 Javascript
[01:01:36]Optic vs paiN 2018国际邀请赛小组赛BO2 第一场 8.19
2018/08/21 DOTA
go语言计算两个时间的时间差方法
2015/03/13 Python
简单解决Python文件中文编码问题
2015/11/22 Python
python 限制函数调用次数的实例讲解
2018/04/21 Python
python matplotlib拟合直线的实现
2019/11/19 Python
Python实现获取当前目录下文件名代码详解
2020/03/10 Python
Python Matplotlib绘图基础知识代码解析
2020/08/31 Python
印度尼西亚值得信赖的第一家网店:Bhinneka
2018/07/16 全球购物
美国汽车零部件和配件网站:CarParts
2019/03/13 全球购物
Omio英国:搜索并比较便宜的巴士、火车和飞机
2019/08/27 全球购物
公务员培训自我鉴定
2013/09/19 职场文书
商务英语专业自荐信
2013/10/14 职场文书
幼儿园新年寄语
2014/04/03 职场文书
2015年禁毒宣传活动总结
2015/03/25 职场文书
2016应届毕业生就业指导课心得体会
2016/01/15 职场文书
一年之计:2019年下半年的计划
2019/05/07 职场文书
k-means & DBSCAN 总结
2021/04/27 Python
Python Pandas pandas.read_sql_query函数实例用法分析
2021/06/21 Python