本文主要给大家介绍python启动线程的四种方式
1. 使用 threading 模块
创建 Thread 对象,然后调用 start() 方法启动线程。
import threadingdef func(): print("Hello, World!")t = threading.Thread(target=func)t.start()
2. 继承 threading.Thread 类
重写 run() 方法,并调用 start() 方法启动线程。
import threadingclass MyThread(threading.Thread): def run(self): print("Hello, World!")t = MyThread()t.start()
3. 使用 concurrent.futures 模块
使用ThreadPoolExecutor 类的 submit() 方法提交任务,自动创建线程池并执行任务。
import concurrent.futuresdef func(): print("Hello, World!")with concurrent.futures.ThreadPoolExecutor() as executor: future = executor.submit(func)
4. 使用 multiprocessing 模块的 Process 类
创建进程,然后在进程中启动线程。
import multiprocessingimport threadingdef func(): print("Hello, World!")if __name__ == "__main__": p = multiprocessing.Process(target=func) p.start() p.join()
以上就是python中启动线程的几种方式的介绍,希望对你有所帮助。
来源地址:https://blog.csdn.net/qq_43030934/article/details/132304031