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
无参方法如果想实例化对象调用,无参方法需写在类外头,然后调用的时候格式就是实例化对象.无参方法不加括号 = 无参方法不加括号
因为实例对象只有在引用方法时,才会将自身作为第一个参数传递;调用实例对象的普通函数,则不会。
相关文章
- 12-26无参方法只能类调用吗?并不是