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

多线程小试牛刀

时间:2018-01-07 14:28:03      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:art   定义   多线程   release   lease   加锁   线程   代码块   threading   

# 导入多线程模块
import threading
# 实例化一个RLock对象mlock  
mlock = threading.RLock()
# 将0赋值给num变量
num = 0
# 定义test函数
def test():
    global num      # 将num变量转换成全局变量   
    mlock.acquire()  # 加锁
    ‘‘‘please write your code‘‘‘     # 要执行的代码块
    num += 1
    mlock.release()  # 释放锁
    print(num)

    for i in range(0,15):
        d = threading.Thread(target=test)      # 调用test进程
        d.start()      # 启动test进程

 

多线程小试牛刀

标签:art   定义   多线程   release   lease   加锁   线程   代码块   threading   

原文地址:https://www.cnblogs.com/panisme/p/8227595.html

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