线程1执行(cond),线程1执行一半等待(cond.wait()),线程2开始执行(cond),线程2执行完毕后(cond.notify()),线程1再接着执行。
import threading
import time
def go1():
with cond: #使用条件变量(资源 Lock)
for i in range(8):
time.sleep(1)
print(threading.current_thread().name,i,"go11")
if i==5:
cond.wait() #等待cond.notify(),再继续执行。(释放条件变量(资源 Lock))
def go2():
with cond: #使用条件变量(资源 Lock)
for i in range(7):
time.sleep(1)
print(threading.current_thread().name, i)
cond.notify() #通知,触发 cond.wait()。(释放条件变量(资源 Lock))
cond=threading.Condition() #线程条件变量
threading.Thread(target=go1).start() #和下面的线程的次序不能调。这个线程先拿到cond条件变量(资源 Lock)
threading.Thread(target=go2).start() #这个线程不会先拿到cond条件变量(资源 Lock)