python 多线程状态
我是用函数包装的线程,如何判断子线程的状态(运行?非运行?)?使用类包装threading会出错,于是采用了函数包装thread然后thread.start_new_th...
我是用 函数 包装的 线程,如何判断 子线程的 状态(运行?非运行?)?
使用类包装threading 会出错,于是采用了 函数 包装 thread 然后 thread.start_new_thread(xiancheng1,(xxx,))这样启动的,主线程怎么判断这个线程是否运行呢? 展开
使用类包装threading 会出错,于是采用了 函数 包装 thread 然后 thread.start_new_thread(xiancheng1,(xxx,))这样启动的,主线程怎么判断这个线程是否运行呢? 展开
2个回答
展开全部
一般在子线程/进程里打印信息,来判断不同线程/进程运行到了指定位置。
类的方式实例化后,可以调用is_alive()方法判断是否在运行。
下面这里有个例子可以试试,有注释,会python的话应该直接就能看懂。
http://study.163.com/forum/detail/664022.htm
类的方式实例化后,可以调用is_alive()方法判断是否在运行。
下面这里有个例子可以试试,有注释,会python的话应该直接就能看懂。
http://study.163.com/forum/detail/664022.htm
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
threading.active_count()
Return the number of Thread objects currently alive. The returned count is
equal to the length of the list returned by enumerate().
active_count可以返回当前活动的线程枚举
我一般是这么用的
def getHeatsParallel(self):
threads = []
for i in range(0, self.threadCount):
t = threading.Thread(target=self.SomeFunction, name=str(i))
threads.append(t)
t.start()
for t in threads:
t.join()
不过我不关心几个活动,因为指定最多就是threadCount个线程
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询