def initialize()
@attribute = AnotherClass.new(self)
end
我要从python ruby。在 python 中,我知道我可以将 self 作为对象传递给函数。现在,我想将 self 传递给另一个类的初始化方法。我怎样才能做到这一点?
def initialize()
@attribute = AnotherClass.new(self)
end
我要从python ruby。在 python 中,我知道我可以将 self 作为对象传递给函数。现在,我想将 self 传递给另一个类的初始化方法。我怎样才能做到这一点?