共计 885 个字符,预计需要花费 3 分钟才能阅读完成。
Python 中创建多线程的方法有以下几种:
- 使用
threading
模块创建多线程:threading
模块是 Python 中用于实现多线程的标准库,可以通过创建Thread
对象来创建多个线程。
import threading
def my_function():
# 线程要执行的代码
# 创建线程
thread1 = threading.Thread(target=my_function)
thread2 = threading.Thread(target=my_function)
# 启动线程
thread1.start()
thread2.start()
- 继承
threading.Thread
类创建多线程:可以通过继承Thread
类,重写run
方法来创建多个线程。
import threading
class MyThread(threading.Thread):
def run(self):
# 线程要执行的代码
# 创建线程
thread1 = MyThread()
thread2 = MyThread()
# 启动线程
thread1.start()
thread2.start()
- 使用
multiprocessing
模块创建多线程:multiprocessing
模块是 Python 中用于实现多进程的标准库,通过创建Process
对象来创建多个线程。
import multiprocessing
def my_function():
# 线程要执行的代码
# 创建线程
process1 = multiprocessing.Process(target=my_function)
process2 = multiprocessing.Process(target=my_function)
# 启动线程
process1.start()
process2.start()
需要注意的是,在 Python 中多线程的执行方式是由操作系统来决定的,因为 Python 的全局解释器锁(GIL)限制了同一时间只能运行一个线程执行 Python 字节码。如果需要充分利用多核 CPU 的并行处理能力,可以考虑使用 multiprocessing
模块创建多进程。
丸趣 TV 网 – 提供最优质的资源集合!
正文完