Python基础:多线程下的条件锁(Condition)实现生产者消费者模式,搞懂线程之间的通讯
import threading
import time
condtion = threading.Condition()
sheep = ['1吨羊肉串','1吨羊肉串','1吨羊肉串','1吨羊肉串','1吨羊肉串'] # 做大的长度是10,10吨羊肉
# 厂商 多个加工厂
class Producer(threading.Thread):
def __init__(self, n...
原创
2020-03-13 21:59:34 ·
428 阅读 ·
0 评论