我有两节课。在面向对象的方法中,我可以从低级类更改父属性。在 python 中,如何更改其他类的父母变量?我有的
class Concurrent( threading.Thread):
def __init__(self):
self.rec = Rec()
self.rec.start()
self.parentvar = None # I have change this variable
self.secondParentVar = [] # or use this
class Rec(Concurrent):
def run(self):
# from here, change variable of the parent Conccurent class variable