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

多线程

时间:2018-07-19 13:36:04      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:start   bsp   style   tar   gil   div   color   print   多线程   

1.threading

  查看当前线程

  开启新的线程

import threading

def worker():
    print(new thread..)
    print(threading.current_thread().getName()) 

if __name__ == __main__:
    print(hello)
    t = threading.current_thread()
    print(t.getName())  # MainThread
    th1 = threading.Thread(target=worker, name=my Thread)
    th1.start()

 

 

2.锁

  细粒度锁:主动加的锁

  粗粒度锁:解释器加的锁 GIL

 

多线程

标签:start   bsp   style   tar   gil   div   color   print   多线程   

原文地址:https://www.cnblogs.com/zhuxiang1633/p/9335001.html

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