6

在下面的 Python 示例中,对象 x 有一个对象 y。我希望能够从 y 调用 x 的方法。
我可以使用@staticmethod 来实现它,但是我不鼓励这样做。

有什么方法可以从对象 y 中引用整个对象 x?

class X(object):
    def __init__(self):
        self.count = 5
        self.y = Y() #instance of Y created.

    def add2(self):
        self.count += 2

class Y(object):
    def modify(self):
        #from here, I wanna called add2 method of object(x)


x = X()
print x.count
>>> 5

x.y.modify()
print x.count
>>> # it will print 7 (x.count=7)

提前致谢。

4

2 回答 2

12

您需要存储对具有 Y 对象实例的对象的引用:

class X(object):
    def __init__(self):
        self.count = 5
        self.y = Y(self) #create a y passing in the current instance of x
    def add2(self):
        self.count += 2

class Y(object):
    def __init__(self,parent):
        self.parent = parent #set the parent attribute to a reference to the X which has it
    def modify(self):
        self.parent.add2()

示例用法:

>>> x = X()
>>> x.y.modify()
>>> x.count
7
于 2013-07-16T08:13:26.350 回答
2

也许您可以使用类继承?例如:

class X(object):
    def __init__(self):
        self.count = 5

    def add2(self):
        self.count += 2

class Y(X):
    def __init__(self):
        super(Y, self).__init__()

    def modify(self):
        self.add2()


y = Y() # We now create an instance of Y which is a child class of 'super' class X
y.modify()
print(y.count) # 7
于 2013-07-16T08:26:12.150 回答