标签:执行 __init__ style foo __del__ 对象 特殊方法 div print
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)
类的特殊成员特殊方法__init__;__call__;__del__....
标签:执行 __init__ style foo __del__ 对象 特殊方法 div print
原文地址:https://www.cnblogs.com/xuwenwei/p/9787044.html