标签:class int self pre 方法 auth *args def __call__
# __author: "ZXYang"
# date: 2020/12/13
class MyTest():
def __call__(self, *args, **kwargs):
print("__call__方法")
m = MyTest()
m()
# __call__方法: m()可直接 【加()】调用对象
标签:class int self pre 方法 auth *args def __call__
原文地址:https://www.cnblogs.com/zxy01/p/14128121.html