码迷,mamicode.com
首页 > 编程语言 > 详细

python with 线程锁

时间:2019-10-06 18:33:48      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:传递   col   global   ceshi   int   线程   网络   全局   class   

import threading
import time

num = 0  # 全局变量多个线程可以读写,传递数据
mutex = threading.RLock()  # 创建一个锁


class Mythread(threading.Thread):
    def run(self):
        global num
        with mutex:  # with RLock的作用相当于自动获取和释放锁(资源)
            for i in range(1000):  # 锁定期间,其他线程不可以干活
                num += 1
        print(num)


mythread = []

for i in range(5):
    t = Mythread()
    t.start()
    mythread.append(t)
for t in mythread:
    t.join()
print("ceshi")

另一种方式,不需传递threading.Thread,直接操作属性:

import threading
import time

num = 0  # 全局变量多个线程可以读写,传递数据

class Mythread():
    mutex = threading.RLock()  # 创建一个类属性锁

    def run(self):
        global num
        with mutex:  # with RLock的作用相当于自动获取和释放锁(资源)
            for i in range(1000):  # 锁定期间,其他线程不可以干活
                num += 1
        print(num)


mythread = []
t=Mythread()
t.run()
print("ceshi")

 

根据网络搜索整合:

参考:https://blog.csdn.net/houyanhua1/article/details/78233519

 

python with 线程锁

标签:传递   col   global   ceshi   int   线程   网络   全局   class   

原文地址:https://www.cnblogs.com/weilaibuxiangshuo/p/11627840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!