Python 线程(二):简单锁实现线程同步
生活随笔
收集整理的這篇文章主要介紹了
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 线程(二):简单锁实现线程同步的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【自定义Android带图片和文字的Im
- 下一篇: Python3 模块相关及输入输出模式