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

threading线程

时间:2020-07-08 15:19:00      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:star   启动   import   def   释放   color   代码   线程阻塞   target   

import threading   # 线程模块

def function(num):
    pass
    
thread_1 = threading.Thread(target=function, args=(1,))   # 创建线程
thread_1.start()   # 启动线程
thread_1.getName()   # 获取线程名
thread_1.join()   # 线程阻塞,等待完成当前线程在开始执行下一个
lock = threading.Lock()   # 初始化线程锁
lock.acquire()   # 线程加锁
lock.release()   # 线程锁释放
with lock:   # 自动释放线程锁
    pass   # 业务代码

 

threading线程

标签:star   启动   import   def   释放   color   代码   线程阻塞   target   

原文地址:https://www.cnblogs.com/Echo-Mikasa/p/13266843.html

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