python编写的多线程程序,要求死循环执行多线程创建的线程,但是程序执行到一定时间后就在其中一个线程执
python编写的一个多线程程序,要求死循环无限制的执行多线程创建的线程,但是程序执行到一定时间后就在其中一个线程中执行永远也出不来了,请问大家问题出在哪儿呢?万急呀,谢...
python编写的一个多线程程序,要求死循环无限制的执行多线程创建的线程,但是程序执行到一定时间后就在其中一个线程中执行永远也出不来了,请问大家问题出在哪儿呢?万急呀,谢谢
# Thread class four
class groupCommunDom0(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.lock = threading.Lock()
def run(self):
self.lock.acquire()
MulticasDom0.run()
self.lock.release()
time.sleep(1)
# Thread class five
class suspendTolerate(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.lock = threading.Lock()
def run(self):
self.lock.acquire()
run_sh.suspendF()
self.lock.release()
time.sleep(1)
def test():
listthread = []
#分别创建线程放在列表中统一执行
#Creating thread
threadfour=groupCommunDom0()
listthread.append(threadfour)
threadfive=suspendTolerate()
listthread.append(threadfive)
#统一一起执行线程
for threadnum in listthread:
threadnum.start()
if __name__=='__main__':
while True:
test()
这是部分代码,实际上我创建了5个类似的线程,但是执行五六分钟后就在其中一个线程中执行跳不出来,好像是锁没有释放吗还是什么?请问我该怎么修改呢?谢谢各位高手指点... 展开
# Thread class four
class groupCommunDom0(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.lock = threading.Lock()
def run(self):
self.lock.acquire()
MulticasDom0.run()
self.lock.release()
time.sleep(1)
# Thread class five
class suspendTolerate(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.lock = threading.Lock()
def run(self):
self.lock.acquire()
run_sh.suspendF()
self.lock.release()
time.sleep(1)
def test():
listthread = []
#分别创建线程放在列表中统一执行
#Creating thread
threadfour=groupCommunDom0()
listthread.append(threadfour)
threadfive=suspendTolerate()
listthread.append(threadfive)
#统一一起执行线程
for threadnum in listthread:
threadnum.start()
if __name__=='__main__':
while True:
test()
这是部分代码,实际上我创建了5个类似的线程,但是执行五六分钟后就在其中一个线程中执行跳不出来,好像是锁没有释放吗还是什么?请问我该怎么修改呢?谢谢各位高手指点... 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询