1. 类; 后面加() ===》实例化一个对象,并且执行__init__方法
2. 对象;后面加() ===》执行__call__方法
class Foo: def __init__(self): print("init") def __call__(self, *args, **kwargs): print("call") return 1 r = Foo() # 实例化一个对象,执行__init__方法 r() # 在一个对象后面加括号,执行__call__方法 ret = Foo()() #类Foo()表明实例化一个对象,并且执行__init__方法,后面再()表明执行__call__方法,__call__方法有个返回值1 print(ret)
原文地址:https://www.cnblogs.com/xuwenwei/p/9787044.html
时间: 2024-10-03 11:00:27