急:python我在调用thread.start_new_thread时发生了如下错误,请问是为什么?

TypeError:firstargmustbecallableTypeError:firstargmustbecallable... TypeError: first arg must be callableTypeError: first arg must be callable 展开
 我来答
LG_MYlove
2016-12-19 · TA获得超过647个赞
知道小有建树答主
回答量:234
采纳率:93%
帮助的人:212万
展开全部

这是因为你在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的参数
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式