0%

__call__()函数


1
2
3
4
5
6
7
class A():
def __call__(self):
print('a')
def n(self):
print('b')

a = A()

本质上就是让类中方法可以直接调用,而不用采用A.method()的方法调用。