def start(self):
for i in range(self.pool.size()):
thread = self.pool.get(i)
thread.start()
老师,这个class ThreadPool中的def start(self)方法,其中的thread.start()语句是python中的threading.Thread自带的方法吗?还是class ProcessThread(threading.Thread)这个类中的def run(self)方法