溫馨提示×

python并發(fā)執(zhí)行函數(shù)怎么實現(xiàn)

小億
91
2023-10-23 10:37:15
欄目: 編程語言

在Python中,可以使用多線程或者多進程來實現(xiàn)并發(fā)執(zhí)行函數(shù)的效果。

使用多線程實現(xiàn)并發(fā)執(zhí)行函數(shù):

import threading

def func1():
    # 函數(shù)1的實現(xiàn)代碼

def func2():
    # 函數(shù)2的實現(xiàn)代碼

# 創(chuàng)建線程
t1 = threading.Thread(target=func1)
t2 = threading.Thread(target=func2)

# 啟動線程
t1.start()
t2.start()

# 等待線程執(zhí)行結(jié)束
t1.join()
t2.join()

使用多進程實現(xiàn)并發(fā)執(zhí)行函數(shù):

import multiprocessing

def func1():
    # 函數(shù)1的實現(xiàn)代碼

def func2():
    # 函數(shù)2的實現(xiàn)代碼

# 創(chuàng)建進程
p1 = multiprocessing.Process(target=func1)
p2 = multiprocessing.Process(target=func2)

# 啟動進程
p1.start()
p2.start()

# 等待進程執(zhí)行結(jié)束
p1.join()
p2.join()

需要注意的是,多線程適合IO密集型的任務(wù),而多進程適合CPU密集型的任務(wù)。

0