为了账号安全,请及时绑定邮箱和手机立即绑定

python threading.Timer不在指定时间立即启动

python threading.Timer不在指定时间立即启动

幕布斯7119047 2021-03-17 17:16:13
我想每3秒执行一个函数,如果我调用一个不带参数的函数,则代码工作正常,如下所示:def mytempfunc():    print "this is timer!"    threading.Timer(5, mytempfunc).start()但是如果我用这样的参数调用函数:def myotherfunc(a,b,c,d):    print "this is timer!"    threading.Timer(5, myotherfunc(a,b,c,d)).start()新线程将立即创建并启动,而无需等待5秒钟。有什么我想念的吗?
查看完整描述

1 回答

?
胡子哥哥

TA贡献1825条经验 获得超6个赞

试试这个:

threading.Timer(5, myotherfunc, [a,b,c,d]).start()

在代码中,实际上是调用myotherfunc(a,b,c,d),而不是将函数和参数传递给Timer类。


查看完整回答
反对 回复 2021-03-26
  • 1 回答
  • 0 关注
  • 370 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信