<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type"…
python未提供线程池模块,在python3上用threading和queue模块自定义简单线程池,代码如下: #用threading queue 做线程池 import queue import threading class ThreadPool(): def __init__(self,arg):#创建队列,在队列每个位置放一个threading.Tread类 self.queue_obj = queue.Queue(arg) for i in range(arg): self.queu…