无参方法只能类调用吗?并不是

class MethodTest:

def inner_test(self):
print(‘in class‘)

def outer_test():
print(‘out of class‘)

mt = MethodTest()
mt.outer_test = outer_test

mt.inner_test() # in class
mt.outer_test() # out of class

无参方法如果想实例化对象调用,无参方法需写在类外头,然后调用的时候格式就是实例化对象.无参方法不加括号 = 无参方法不加括号
因为实例对象只有在引用方法时,才会将自身作为第一个参数传递;调用实例对象的普通函数,则不会。

无参方法只能类调用吗?并不是

上一篇:Vue 组件间的传值五大场景,你造吗?


下一篇:leetcode 863. 二叉树中所有距离为 K 的结点