多线程

Posted zhuxiang1633

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多线程相关的知识,希望对你有一定的参考价值。

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

 

以上是关于多线程的主要内容,如果未能解决你的问题,请参考以下文章

线程学习知识点总结

多个请求是多线程吗

python小白学习记录 多线程爬取ts片段

多线程编程

多线程编程

python多线程