python 中多线程共享全局变量的问题?

2016-01-19 18:46:17 +08:00
 defias
代码有多个文件组成,如下:

ggg.py:
-------------------
#coding=utf8

#定义全局变量
isflag = False
--------------------


mmm.py:
-------------------
#coding=utf8
from ggg import *
import threading
import time


class mmm(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)

def run(self):
global isflag
print 'mmm isflag id: ', id(isflag)
print 'mmm isflag: ', isflag

while not isflag:
print 'mmm isflag id: ', id(isflag)
print 'mmm isflag: ', isflag
print 'sleep...\n'
time.sleep(0.5)
print 'sleep end\n'

--------------------



testglobal.py:
-------------------
#coding=utf8
from ggg import *
import threading
import time
import mmm

class subc(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)

def run(self):
print 'sleep 3s...\n'
time.sleep(3)
print 'sleep 3s end\n'

global isflag
print 'subc isflag id: ', id(isflag)
isflag = True
print 'subc isflag: ', isflag


t2 = mmm.mmm()
t2.setDaemon(True)
t2.start()


t1 = subc()
t1.setDaemon(True)
t1.start()


t2.join()
print '---'
--------------------

执行:python testglobal.py
运行结果: subc 线程中改变 isflag 为 True 后, mmm 线程中 isflag 仍然为 False 。
没理解这里为啥会这样,全局变量不是在多线程中共享的吗?
10006 次点击
所在节点    Python
5 条回复
billgreen1
2016-01-19 19:30:30 +08:00
我最近也在看多进程 /多线程问题,请把问题用 markown 再发一遍,谢谢。
haofly
2016-01-19 21:12:14 +08:00
要改变全局变量得用锁啊
mengzhuo
2016-01-20 07:23:35 +08:00
改成
import ggg
ggg.isflag = xxx
defias
2016-01-20 10:04:15 +08:00
3 楼的果然可以哦
zonghua
2017-03-02 10:50:26 +08:00
@mengzhuo 模块变量再赋值到灵位一个参数呢 比如说 ggg_is_flag = ggg.isflag

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/251905

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX