首页 > 代码库 > python中的队列详解

python中的队列详解

一、Queue简介

python中的队列分类可分为两种:

1.线程Queue,也就是普通的Queue

2.进程Queue,在多线程与多进程会讲解。

 

python中的队列详解