急:python我在调用thread.start_new_thread时发生了如下错误,请问是为什么?
TypeError:firstargmustbecallableTypeError:firstargmustbecallable...
TypeError: first arg must be callableTypeError: first arg must be callable
展开
1个回答
展开全部
这是因为你在start_new_thread里的参数设置错误了,你要传函数名,而不是执行函数
下面给你个例子看看
#!/usr/bin/python
import thread
import time
# Define a function for the thread
def print_time( threadName, delay):
count = 0
while count < 5:
time.sleep(delay)
count += 1
print "%s: %s" % ( threadName, time.ctime(time.time()) )
# Create two threads as follows
try:
thread.start_new_thread( print_time, ("Thread-1", 2, ) )
thread.start_new_thread( print_time, ("Thread-2", 4, ) )
except:
print "Error: unable to start thread"
while 1:
pass
看到了吗,上面的start_new_thread的第一个参数传的是函数名字
追问
请问第二个参数代表什么?
追答
第二个参数是该函数的参数,用tuple封装。在上例中("Thread-1", 2, ) 是print_time的参数
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询