我开始学习编写多线程python代码。特别是我试图在线程之间使用事件。由于某种原因,下面的代码不起作用,我找不到原因。 你有什么建议吗? 提前谢谢!
import threading
import time
e1 = threading.Event()
def counting_thread():
x=0
while 1:
print(x)
if x==5:
e1.set
x=x+1
if x==11:
x=0
time.sleep(1)
def speaking_thread():
while not e1.wait():
print('You just said five!')
t1 = threading.Thread(target=counting_thread)
t1.start()
t2 = threading.Thread(target=speaking_thread)
t2.start()
答案 0 :(得分:0)
您实际上并没有调用set
方法。
if x==5:
e1.set()