我使用线程锁编写了一个简单的测试程序。这个程序没有按预期运行,python 解释器也没有抱怨。
测试1.py:
from __future__ import with_statement
from threading import Thread, RLock
import time
import test2
lock = RLock()
class Test1(object):
def __init__(self):
print("Start Test1")
self.test2 = test2.Test2()
self.__Thread = Thread(target=self.myThread, name="thread")
self.__Thread.daemon = True
self.__Thread.start()
self.test1Method()
def test1Method(self):
print("start test1Method")
with lock:
print("entered test1Method")
time.sleep(5)
print("end test1Method")
def myThread(self):
self.test2.test2Method()
if __name__ == "__main__":
client = Test1()
raw_input()
测试2.py:
from __future__ import with_statement
import time
import test1
lock = test1.lock
class Test2(object):
def __init__(self):
print("Start Test2")
def test2Method(self):
print("start test2Method")
with lock:
print("entered test2Method")
time.sleep(5)
print("end test2Method")
两个睡眠同时执行!不是我使用锁时的预期。
当 test2Method 移动到 test1.py 一切正常。当我在 test2.py 中创建锁并将其导入 test1.py 时,一切正常。当我在单独的源文件中创建锁并将其导入 test1.py 和 test2.py 时,一切正常。
可能与循环进口有关。
但是为什么 python 不抱怨呢?