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

Python中有两种锁,一个锁是原始的锁(原语), 不可重入,而另一种锁则是可重入的锁即递归锁。而是thread模块中,只提供了不可重入的锁,而在threading中则提供这两种锁。

可重入:当一个线程拥有一个锁的使用权后,再次获取锁的使用权时,不会阻塞,会立马得到使用权,则原始锁的话,则不行,会阻塞。

方法一:thead的不可重入锁

  

import thread
import time

lock = 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 + 1
        else:
            break
        lock.release()
    else:
        thread.exit_thread()

if __name__ == "__main__":
    num = 1
    thread.start_new_thread(Count, ('A',))
    thread.start_new_thread(Count, ('B',))

    time.sleep(5)

  

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

import threading
import time

lock = 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 + 1
        else:
            break
        lock.release()

if __name__ == "__main__":
    num = 1
    t1 = 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 time

lock = threading.RLock()

def CountNum(id):
    global num
    
    lock.acquire()
    
    if num <= 10:
        print "Thread id is : %s     The num is %s\n" % (id, str(num))
        num = num + 1
        CountNum(id)

    lock.release()

if __name__ == "__main__":
    num = 1
    t1 = threading.Thread(target=CountNum, args=('A'))

    t1.start()

    time.sleep(5)

转载于:https://www.cnblogs.com/wang-can/p/3581028.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值