我有这种代码。
class typeOne(self, obj):
....
def run():
# I want to call the funct() from typeTwo
class typeTwo(self, obj2):
...
def funct():
...
class typePlayer(self, obj3):
...
tT = typeTwo()
...
tT.funct()
.....
我想从 typePlayer 中调用的 typeOne 类中引用 typeTwo 类。
我试过这个。
class typeOne:
....
mytT = typeTwo() # another probs here is that how can I get the 'obj2'?
def run():
mytT.funct()
但它创建了新的 typeTwo() 类,我不需要它,我只想调用现有的 typeTwo() 类而不创建一个,typeTwo() 类已由 typePlayer() 类执行。
有人对此有任何想法吗?