併發編程-線程-15線程間通訊

一個進程內線程間的通訊能夠直接修改,由於同個進程中的全部線程都共享這個線程的數據,不會形成數據錯亂的問題python

代碼實現

from threading import Thread

money = 666

def task():
    global money
    money = 999

t = Thread(target=task)
t.start()
t.join()
print(money)
相關文章
相關標籤/搜索