摘要:
生产者与消费者的解耦问题: 耦合时代码之前联系性很强,不好 解耦: 减少之间的联系 所以第一版本就要想的长远一点 这个例子使用队列作为缓冲部分 #encoding=utf-8import threadingimport timefrom queue import Queueclass Produce 阅读全文
摘要:
不管进程还是线程,主都会等着子结束而结束这是因为子进程/线程在执行的时候,会暂用一些资源,主就要收回这些资源 线程是系统调度的基本单位,进程是系统资源的基本单位 主线程会等待子线程结束才结束 import threadingimport timedef sayHello(): print(" ") 阅读全文