1.__call__
这是一个可以把对象变成函数的方法
class A(): def __call__(self, *args, **kwargs): ic("__call__") # 实例化对象 a = A() # 对象就像函数一样调用 a("aa") # == a.__call__()