摘要: import threading from time import ctime,sleep class MyThread(threading.Thread): """自定义多线程类""" def __init__(self,func,args,name=''): threading.Thread._ 阅读全文