Python中有多种方法可以实现多线程同步,以下是其中几种常用的方法:
import threading
# 共享资源
shared_resource = 0
# 创建锁
lock = threading.Lock()
# 线程函数
def thread_func():
global shared_resource
# 获取锁
lock.acquire()
try:
# 修改共享资源
shared_resource += 1
finally:
# 释放锁
lock.release()
import threading
# 共享资源
shared_resource = 0
# 创建条件
condition = threading.Condition()
# 线程函数
def thread_func():
global shared_resource
# 获取条件锁
with condition:
# 修改共享资源
shared_resource += 1
# 通知其他等待线程
condition.notify_all()
import threading
# 共享资源
shared_resource = 0
# 创建信号量
semaphore = threading.Semaphore(1)
# 线程函数
def thread_func():
global shared_resource
# 获取信号量
semaphore.acquire()
try:
# 修改共享资源
shared_resource += 1
finally:
# 释放信号量
semaphore.release()
这些方法都可以实现多线程的同步,具体选择哪种方法取决于具体的应用场景和需求。