我有A级B级和C级。
A 类和 B 类可以影响 C 类。因此它们需要引用该类的同一个实例。
#a.py
from C import C
Cinstance = C()
Cinstance.add()
#b.py
class b(object)
#i need to refer to 'cinstance' here to control the same instance of the class
#C.py
class C(object)
def __init__(self):
self.a=1
def add(self):
self.a += 1
print a
我如何需要导入和实例化类才能以这种方式工作?我是编程新手,还在学习,所以现在对我来说很明显的事情仍然有点困难。