日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python 线程(二):简单锁实现线程同步

發布時間:2025/3/15 python 28 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python 线程(二):简单锁实现线程同步 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Python中有兩種鎖,一個鎖是原始的鎖(原語), 不可重入,而另一種鎖則是可重入的鎖即遞歸鎖。而是thread模塊中,只提供了不可重入的鎖,而在threading中則提供這兩種鎖。

可重入:當一個線程擁有一個鎖的使用權后,再次獲取鎖的使用權時,不會阻塞,會立馬得到使用權,則原始鎖的話,則不行,會阻塞。

方法一:thead的不可重入鎖

  

import thread import timelock = thread.allocate_lock()def Count(id):global num;while True:lock.acquire()if num <= 10:print "Thread id is : %s The num is %s\n" % (id, str(num))num = num + 1else:breaklock.release()else:thread.exit_thread()if __name__ == "__main__":num = 1thread.start_new_thread(Count, ('A',))thread.start_new_thread(Count, ('B',))time.sleep(5)

  

方法二:theading的Lock(不可重入鎖)

import threading import timelock = threading.Lock()def Count(id):global num;while True:lock.acquire()if num <= 10:print "Thread id is : %s The num is %s\n" % (id, str(num))num = num + 1else:breaklock.release()if __name__ == "__main__":num = 1t1 = threading.Thread(target=Count, args=('A', ))t2 = threading.Thread(target=Count, args=('B', ))t1.start()t2.start()time.sleep(5)

  方法三:threading的RLock(可重入)

import threading import timelock = threading.RLock()def CountNum(id):global numlock.acquire()if num <= 10:print "Thread id is : %s The num is %s\n" % (id, str(num))num = num + 1CountNum(id)lock.release()if __name__ == "__main__":num = 1t1 = threading.Thread(target=CountNum, args=('A'))t1.start()time.sleep(5)

轉載于:https://www.cnblogs.com/wang-can/p/3581028.html

總結

以上是生活随笔為你收集整理的Python 线程(二):简单锁实现线程同步的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。