请教个 Python 不同 py 文件中的类获取另一个类实例变量的问题
資深大佬 : xiaolinjia 60
标题感觉取的怪怪的,所以还是用代码举个例子吧。
目前有三个 py 文件,当然这里简化了。其中 test2.py 是第三方库的。
test1.py :
import threading from test2 import A testA = A(1) class B: def __init__(self): self._lock = threading.Lock() def do_something_1(self): def callback(): pass testA.do_something(callback)
test2.py
class A: def __init__(self, param1): self.a = param1 # 初始化很多东西,加载些模型 def do_something(self, callback_func): while True: # 想在 reading 之前,获取到 test1.py 中实例的锁,这个可以做到吗 # reading callback_func()
test3.py
from flask import Flask, jsonify from test1 import B app = Flask(__name__) @app.route('/xxx/') def test1(): b = B() b.start() return jsonify({'msg': 'b has started.'}) if __name__ == '__main__': app.run()
然后现在想在 test2.py 中的 reading 前获取到 B 类的实例中的 lock 成员,或者其他成员,这个要怎么做到啊,我想半天都不知道要怎么才获取的到,用 globals()和 locals()看了都没有。。
大佬有話說 (2)