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
模块创建多进程。