我想每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秒钟。有什么我想念的吗?
胡子哥哥
相关分类