Python绑定方法实例错误

时间:2012-08-12 07:39:30

标签: python methods error-handling

我试图在类中实现递归函数:

class R:
    def A(self):
        if flag:
             return self.value
        else:
             ret=0
             for c in childs:
                 ret += c.A()
             return ret
r = R()
print r.A()

我收到的消息是:

<bound method R.A of <R.R instance at 0x7fa1c1487248>>

我不是在寻找方法调用的字符串表示,我想打印递归计算的结果。

0 个答案:

没有答案