在Python中,可以使用threading模塊來實現多線程編程。下面是使用threading模塊的一些常見操作:
import threading
thread = threading.Thread(target=函數名, args=參數)
class MyThread(threading.Thread):
def run(self):
# 線程的執行邏輯
thread.start()
thread.join()
lock = threading.Lock()
# 在臨界區前獲取鎖
lock.acquire()
# 在臨界區內執行操作
# 在臨界區后釋放鎖
lock.release()
condition = threading.Condition()
# 在臨界區前獲取鎖
condition.acquire()
# 在臨界區內執行操作
# 在臨界區后釋放鎖
condition.release()
# 等待條件滿足
condition.wait()
# 喚醒一個等待的線程
condition.notify()
# 喚醒所有等待的線程
condition.notifyAll()
queue = Queue()
# 向隊列中添加元素
queue.put(item)
# 從隊列中獲取元素
item = queue.get()
注意:在多線程編程中,要注意線程安全和資源訪問的同步問題,避免出現競態條件等問題。