我的代码如此宁静
def Checks(self):
_thread.start_new_thread(self.update_config, ())
_thread.start_new_thread(self.load_updates, ('Scan-thread', ))
_thread.start_new_thread(self.check_exit, ('exit-thread', ))
while True:
schedule.run_pending()
time.sleep(1)
所以我的问题是:是否可以在一个池中运行所有线程? ,而不是只有3个代码行只有一个_thread,有什么主意吗?