10.1python中的GIL

Posted zydeboke

tags:

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

 1 #!/user/bin/env python
 2 # -*- coding:utf-8 -*-
 3 
 4 # gil global interpreter lock(cpython)全局解释器锁
 5 # python中一个线程对应于c语言中的一个线程
 6 # gil时的同一时刻只有一个线程在一个cpu上执行字节码,无法将多个线程映射到多个cpu上执行
 7 # gil会根据执行的字节码行数以及时间片释放gil,gil在遇到io操作时主动释放
 8 import threading
 9 total = 0
10 
11 
12 def add():
13     global total
14     for i in range(1000000):
15         total += 1
16 
17 
18 def desc():
19     global total
20     for i in range(1000000):
21         total -= 1
22 
23 
24 thread1 = threading.Thread(target=add)
25 thread2 = threading.Thread(target=desc)
26 
27 thread1.start()
28 thread2.start()
29 
30 thread1.join()
31 thread2.join()
32 
33 print(total)
C:\Users\Administrator\Python\imooc>python demo.py
-102343

C:\Users\Administrator\Python\imooc>python demo.py
-29159

C:\Users\Administrator\Python\imooc>python demo.py
-239340

 

以上是关于10.1python中的GIL的主要内容,如果未能解决你的问题,请参考以下文章

10.1Python 面向对象程序设计基础

10.1博客项目1.4

并发编程之线程进阶

python基础(34):线程

Python学习笔记__10.1章 多进程

python编辑基础与http接口测试_10.1章节