我很好奇为什么在我告诉它等待事件对象之后,下面代码中的while循环仍然运行。
import threading, time
msg = threading.Event()
def sec():
print "second thread starting now.."
counter = 0
while True:
#while msg.isSet():
print "hello"
print counter
counter += 1
time.sleep(3)
msg.wait()
secThread = threading.Thread(target = sec)
secThread.start()
print "a"
msg.set()
time.sleep(5)
print "b"
msg.set()
我得到以下输出
second thread starting now..a
hello
0
hello
1
b
hello
2
hello
3
....
(keeps going)
我可以用注释掉的while循环修复它,但我很好奇为什么它仍然运行。主线程已完成运行,因此不应设置线程事件以允许第二个线程运行。
谢谢。
答案 0 :(得分:2)
由于msg
已设置(您设置),因此循环不需要等待。如果您想让循环等待,请在事件上调用clear
。如果您愿意,可以在msg.clear()
返回后进行循环调用msg.wait
。