Python - 是否可以从实例化的类函数中查看调用方法的“self”?

时间:2016-06-15 22:33:07

标签: python multithreading

class classB(object):
    def Bfunc1(self):
        "from here how can I access the 'self' of the calling class?"

class classA(object):
    def __init__(self):
        self._threadLocal = threading.local()

    def func1(self):
        self._threadLocal.x = 'stuff'
        cb = classB()
        cb.Bfunc1() <---

我试图看看是否可以从classA到classB实例检索存储在threadlocal中的某些数据。我的问题是'self'引用被绑定到实例化的类。这可能吗?

0 个答案:

没有答案