摘要:
import time import threading # 吃火锅鱼丸 guo = [] suo = threading.Condition() #条件锁 # 生产者负责生产 class Produce(threading.Thread): def __init__(self): super().__init__() def run(self): ... 阅读全文
posted @ 2019-04-12 18:23
AloneInDefeat
阅读(323)
评论(0)
推荐(0)